Unicode to utf-32 converter
World's simplest unicode toolThis online utility encodes Unicode data to UTF-32 encoding. Anything that you paste or enter in the input area automatically gets converted to UTF-32 and is printed in the output area. It supports all Unicode symbols and it works with emoji characters. You can output UTF-32 bytes in binary, octal, decimal, hexadecimal bases, or use a custom base from 2 to 36. You can use the Little and Big Endian formats for the 32-bit double word output values and optionally prepend the byte order mark (BOM). You can also adjust the separator between output values, add full padding, and the base prefix. Created by encoding gurus from team Browserling.
A link to this tool, including input, options and all chained tools.
Can't convert.
What is a unicode to utf-32 converter?
learn more about this toolThis browser-based utility converts your Unicode text to UTF-32 encoding. UTF-32 encoding is a fixed-length encoding scheme that uses 4 bytes to represent each code point. The biggest advantage of UTF-32 is that any Unicode character can be represented as a single 32-bit integer (a double word). The biggest disadvantage is that this encoding wastes 11 bits on average as all 1,114,111 Unicode characters can be represented in 21 bits. This tool supports printing UTF-32 values in bases from 2 to 36. If you want to display double words in a hexadecimal (base-16), decimal (base-10), octal (base-8), or binary (base-2) number system, you can quickly select it from the bases list in the options. If you need to use any other base, then select the "Use a Custom Base" item in this list and enter the needed base value in the option below. This utility also supports Little Endian and Big Endian byte order formats. If the least significant byte (LSB) is stored or transmitted first, then it is said to be the Little Endian data format. On the other hand, if the most significant byte (MSB) is stored or transmitted first (and LSB transmitted last), then it is said to be the Big Endian data format. For example, if a UTF-32 value in the Big Endian format is AABBCCDD (in hex), then in the Little Endian format it's DDCCBBAA. This tool also allows you to add the byte order mark (BOM) at the beginning of UTF-32 data. BOM is a short byte sequence that indicates the endianness of the data. Little Endian's BOM is fffe0000 (in hex) and Big Endian's BOM is 0000feff. There are also three other options for improving the output UTF-32 data. The first one allows you to separate double words with any character. The second one adds zeros in front of shorter bytes to get the full double word length. The third one adds a base prefix at the beginning of binary, octal, and hexadecimal double words. For the hexadecimal base, this prefix is 0x, for the octal base, it's the letter o, and for the binary base it's 0b.
Unicode to utf-32 converter examples
Click to useExtraordinary Google Logo
In this example, we convert a colorful Google logo, which uses various Unicode characters into UTF-32 encoding in a hexadecimal base. For the output endianness, we use the Little Endian format. This means that the most significant byte is stored last (and least significant byte first). We also use padding option to pad all bytes with zeros to make them all equal length. We separate the double words with a comma character and prepend a hexadecimal prefix "0x" in front of bytes.
🅶🅾𝕆🄶𝔏É
0x76f10100, 0x7ef10100, 0x46d50100, 0x36f10100, 0x0fd50100, 0xc9000000
Required options
Output UTF-32 encoded code
points in this number base.
points in this number base.
Print the least significant
byte first.
byte first.
Use byte order mark (BOM)
in front of UTF-32 data.
in front of UTF-32 data.
Use this symbol to separate
output UTF-32 double words.
output UTF-32 double words.
Add zeros to UTF-32 bytes to
get a full 32-bit length.
get a full 32-bit length.
Add a prefix in front of the
binary, octal, and hex bases.
binary, octal, and hex bases.
Ladybug Emoji
This example UTF-32 encodes a single ladybug emoji to binary (radix 2). It uses the Big Endian (BE) byte order format and places a byte order mark (BOM) at the beginning of UTF-32 data. Having BOM at the beginning of the data is super useful as it immediately tells us, which byte order this is. In this example, we also add a prefix "0b" to the double words to indicate the binary numeral system and separate every four bytes with a semicolon character.
🐞
0b1111111011111111; 0b11111010000011110
Required options
Output UTF-32 encoded code
points in this number base.
points in this number base.
Print the most significant
byte first.
byte first.
Use byte order mark (BOM)
in front of UTF-32 data.
in front of UTF-32 data.
Use this symbol to separate
output UTF-32 double words.
output UTF-32 double words.
Add zeros to UTF-32 bytes to
get a full 32-bit length.
get a full 32-bit length.
Add a prefix in front of the
binary, octal, and hex bases.
binary, octal, and hex bases.
Reptile Emojis
In this example, we encode a list of emoji reptiles to the BE UTF-32 encoding. We set the "Use a Custom Base" option here and adjust its value to 25. Base-25 includes the first 10 digits (0 to 9) and the first 15 letters (a to o). We output the 32-bit UTF values without a prefix or padding but we add the BOM mark in front of the data and separate every code point with a space character.
🐸 Frog
🐊 Crocodile
🐢 Turtle
🦎 Lizard
🐍 Snake
44b4 84m6 17 2k 4e 4b 43 a 84ka 17 2h 4e 4b 3o 4b 40 45 48 41 a 84l9 17 39 4h 4e 4g 48 41 a 871m 17 31 45 4m 3m 4e 40 a 84kd 17 38 4a 3m 47 41
Required options
Output UTF-32 encoded code
points in this number base.
points in this number base.
Set arbitrary base here.
(Possible values: 2 - 36.)
(Possible values: 2 - 36.)
Print the most significant
byte first.
byte first.
Use byte order mark (BOM)
in front of UTF-32 data.
in front of UTF-32 data.
Use this symbol to separate
output UTF-32 double words.
output UTF-32 double words.
Add zeros to UTF-32 bytes to
get a full 32-bit length.
get a full 32-bit length.
Add a prefix in front of the
binary, octal, and hex bases.
binary, octal, and hex bases.
Pro tips Master online unicode tools
You can pass input to this tool via ?input query argument and it will automatically compute output. Here's how to type it in your browser's address bar. Click to try!
https://onlinetools.com/unicode/convert-unicode-to-utf32?input=%F0%9F%85%B6%F0%9F%85%BE%F0%9D%95%86%F0%9F%84%B6%F0%9D%94%8F%C3%89&utf32le=true&separator=%252C%20&base=hexadecimal&padding=true&prefix=true&bom=false
All unicode tools
Quickly find code positions of all Unicode values.
Quickly decode code positions to Unicode values.
Quickly encode Unicode values to UTF-8 encoding.
Quickly encode Unicode values to UTF-16 encoding.
Quickly encode Unicode values to UTF-32 encoding.
Quickly create a picture from Unicode symbols.
Quickly generate random Unicode text in a given range.
Quickly generate all Unicode values from the given code point interval.
Quickly filter Unicode symbols that are within the given code point interval.
Quickly split Unicode data into graphemes.
Quickly sort Unicode glyphs in increasing or decreasing order.
Quickly find the length of Unicode text.
Quickly increase Unicode code point values.
Quickly decrease Unicode code point values.
Quickly reverse the order of symbols in Unicode text.
Quickly rotate Unicode characters to the left and right.
Quickly create multiple copies of Unicode text.
Quickly extract all characters from Unicode text.
Quickly split Unicode data into pieces.
Quickly split Unicode text into chunks of constant length.
Quickly merge Unicode snippets together.
Quickly shorten Unicode text to the given length.
Quickly left-pad Unicode text with any character.
Quickly right-pad Unicode text with any character.
Quickly align Unicode data to the center.
Quickly align Unicode data to the right.
Quickly convert ordinary numbers to fancy Unicode numbers.
Quickly convert Unicode numbers back to regular numbers.
Quickly convert ordinary letters to Unicode letters in various fonts.
Quickly convert Unicode letters back to regular Latin letters.
Quickly convert ordinary text to fancy Unicode text.
Quickly convert fancy Unicode text back to regular text.
Quickly combine input Unicode with diacritical marks.
Quickly delete diacritical marks from the Unicode text.
Quickly spoof regular text using Unicode homoglyphs.
Quickly unspoof homoglyphs in text with regular letters.
Quickly check if the given Unicode text is spoofed or not.
Quickly circularly rearrange Unicode symbols.
Quickly convert Unicode data to escape sequences.
Quickly encode Unicode data to HTML entities.
Quickly URL-escape Unicode symbols.
Quickly encode Unicode values to base64.
Quickly encode Unicode values to a data URI.
Quickly convert Unicode characters to raw bytes.
Quickly convert Unicode data to base-2 (binary).
Quickly convert Unicode data to base-8 (octal).
Quickly convert Unicode data to base-10 (decimal).
Quickly convert Unicode data to base-16 (hexadecimal).
Quickly convert Unicode symbols to raw ASCII bytes.
Quickly convert ASCII bytes to Unicode symbols.
Quickly convert Unicode text to a string literal.
Quickly create a picture from Unicode emojis.
Quickly release Zalgo on your Unicode text.
Quickly make Zalgo text readable again.
Coming soon These unicode tools are on the way
Edit Unicode
View and edit Unicode in a browser-based editor.
Name Unicode Symbols
Spell out the names of Unicode characters in the input text.
URL-decode Unicode
URL-unescape Unicode text.
Convert Binary to Unicode
Convert base-2 data to Unicode encoding.
Convert Octal to Unicode
Convert base-8 data to Unicode encoding.
Convert Decimal to Unicode
Convert base-10 data to Unicode encoding.
Convert Hex to Unicode
Convert base-16 data to Unicode encoding.
Convert Unicode to Any Base
Convert Unicode text to any radix.
Convert Any Base to Unicode
Convert any radix data to Unicode.
Convert Unicode to Latin1
Convert Unicode text to ISO-8859-1 encoding.
Convert Latin1 to Unicode
Convert ISO-859-1 encoded data to Unicode.
Convert Unicode to Latin2
Convert Unicode text to ISO-8859-2 encoding.
Convert Latin2 to Unicode
Convert ISO-8859-2 encoded data to Unicode.
Convert Unicode to Ecoji
Convert Unicode text to Ecoji encoding.
Convert Ecoji to Unicode
Convert Ecoji encoded data to Unicode.
Convert Bytes to Unicode
Convert raw bytes to Unicode.
Check Unicode Version
Check the Unicode version of the given Unicode characters.
Validate Unicode
Check if the given Unicode has valid encoding.
Convert Unicode to Punycode
Encode Unicode text to Punycode encoding.
Convert Punycode to Unicode
Decode Punycode encoding to Unicode.
Decode Base64 to Unicode
Convert base64 data to Unicode text.
Encode Unicode to Data URI
Convert Unicode to a valid data URL.
Decode Data URI to Unicode
Convert a valid data URL to Unicode text.
Convert HTML to Unicode
Decode HTML entities to Unicode data.
Convert UTF8 to Unicode
Decode UTF8 encoding to Unicode.
Convert UTF16 to Unicode
Decode UTF16 encoding to Unicode.
Convert UTF32 to Unicode
Decode UTF32 encoding to Unicode.
Convert Unicode to Uppercase
Convert all Unicode characters to uppercase.
Convert Unicode to Lowercase
Convert all Unicode characters to lowercase.
Print All Unicode Flags
Generate a list of all country flag icons.
Print All Unicode Arrows
Generate a list of all Unicode arrows.
Print All Unicode Animals
Generate a list of all Unicode animals.
Print All Unicode Flowers and Plants
Generate a list of all Unicode flowers and plants.
Print All Unicode Blocks
Generate a list of all Unicode block elements.
Print All Unicode Hieroglyphs
Generate a list of all Egyptian hieroglyphs.
Print All Unicode Currencies
Generate a list of all currency symbols.
Generate a Unicode Rainbow
Use Unicode colors to generate a rainbow.
Generate a Lenny Face
Create a smiley face from Unicode symbols.
Generate Random Emoji
Generate a list of random emojis.
Convert Unicode to Randomcase
Randomize case of all Unicode characters.
Convert Unicode to Lowercase
Convert all Unicode characters to lowercase.
JSON Stringify Unicode
Encode Unicode to JSON.
JSON Parse Unicode
Decode JSON to Unicode.
Shuffle Unicode Symbols
Randomly rearrange the order of input graphemes.
Convert Unicode to Alt Code
Generate Alt codes for Unicode characters.
Convert Alt Code to Unicode
Generate Unicode glyphs from Alt codes.
Analyze Unicode
Print statistics about Unicode data and code points.
Slice Unicode
Extract a part from Unicode data.
Draw a Unicode Wave
Generate waves with Unicode symbols.
Draw a Unicode Sparkline
Generate graphs using Unicode symbols.
Draw a Unicode Box
Wrap a message in a Unicode box.
Subscribe! Never miss an update
Cool!
Notifications We'll let you know when we add this tool
Cool!
Feedback we'd love to hear from you!