To further explain:
BIP-38 refers to a particular proposal that allows for the encryption of singular private keys. go to
https://www.bitaddress.org and go to the details pane and you have the option of entering a private key, encrypting it with bip-38's specifications, then scroll down and find the encrypted key (starts with 6) and enter it back into the box. it will then ask for the decryption passphrase.
The utility of such a proposal is likely for paper wallets where one prints the encrypted version of the privkey and writes the decryption passphrase on the paper wallet so that any situations such as the printer keeping a secret copy of your prints, etc..., since the key is encrypted no one who can intercept the paper wallet can get anywhere but the real paper wallet user just needs to read the passphrase written down.
https://github.com/bitcoin/bips/blob/master/bip-0044.mediawikiBIP-44 is actually the standard for which how one should use the derivation scheme defined in bip-32 to derive different coins from the same mnemonic without risk of address reuse/replay attacks. Explained further below
https://github.com/bitcoin/bips/blob/master/bip-0032.mediawikiBIP-32 is the real cryptographic standard for dealing with derivation and extended keys. Basically almost always (some exceptions exist) whenever you see the term derivation path (m/44'/0' etc... but always starts with m/), you are utilizing a format layed out in bip-44, which define the second parameter to the right of m/. Bitcoin is 0, litecoin is 2, eth is 60. They are defined in SLIP-0044
https://github.com/satoshilabs/slips/blob/master/slip-0044.mdwhenever you see m/44 it refers to the purpose of the key, which is for sending/receiving--as opposed to being for identity verification through signatures. (just ignore that for now but bip-43 goes over this if interested
https://github.com/bitcoin/bips/blob/master/bip-0043.mediawiki )
https://github.com/bitcoin/bips/blob/master/bip-0039.mediawikiBIP-39 specifies the standard for turning a mnemonic phrase into an actual cryptographic seed. So when you get a 12/24/other length in words seedphrase, its really just an abstraction of the more important string of numbers and letters that is really what is used to derive addresses from the multiword phrases.
Great tool
https://iancoleman.io/bip39/So when you use a multi-coin wallet like exodus or jaxx, or one of the many phone wallets, its likely they are bip-44 compliant and thus are compatible.
I know the derivation path struggles i've had to go through over the years (from finding old android phone wallet's derivation paths, from even recovering from a backup of which you cant find documentation for. happy to assist for free with donations accepted if funds are recovered and at no point will i ask compromising information in any sense.
Cheers!