Unicode Finder

"🕮" U+1F56E(BOOK)

🕮
U+1F56E
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
BOOK

Programming

C
\u1F56E
JavaScript
\u1F56E
Java
\u1F56E
Json
\u1F56E
Python
\u1F56E
Perl
\x{1F56E}
PHP
\x{1F56E}
Ruby
\u{1F56E}
Rust
\u{1F56E}
Go
\u1F56E

Web

CSS
\01F56E
HtmlDecimal
🕮
HtmlHexadecimal
🕮
Url
%F0%9F%95%AE

Code

MD5
db5e542f534aa1d7a26e74ae481869dd
Sha1
cea2468aeb5c6f28aa3866f00a3dc1a8f51375b4
Base64
8J+Vrg==

Ejemplos de Uso

Programming Languages

C:

char c = '\u1F56E';
printf("%c\n", c);  // Output: 🕮

JavaScript:

const char = '\u1F56E';
console.log(char);  // Output: 🕮

Java:

char c = '\u1F56E';
System.out.println(c);  // Output: 🕮

JSON:

{"text": "\u1F56E"}  // Value: 🕮

Python:

char = '\u1F56E'
print(char)  # Output: 🕮

Perl:

my $char = "\x{1F56E}";
print $char;  # Output: 🕮

PHP:

$char = "\x{1F56E}";
echo $char;  // Output: 🕮

Ruby:

char = "\u{1F56E}"
puts char  # Output: 🕮

Rust:

let c = '\u{1F56E}';
println!("{}", c);  // Output: 🕮

Go:

char := '\u1F56E'
fmt.Printf("%c\n", char)  // Output: 🕮

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F56E";  /* Display: 🕮 */
}

HTML Decimal:

<p>HTML decimal: &#128366;</p>  <!-- Display: 🕮 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F56E;</p>  <!-- Display: 🕮 -->

URL Encoding:

// 🕮 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%95%AE

Encodings

MD5:

db5e542f534aa1d7a26e74ae481869dd

SHA1:

cea2468aeb5c6f28aa3866f00a3dc1a8f51375b4

Base64:

8J+Vrg==