Unicode Finder

"🐎" U+1F40E(HORSE)

🐎
U+1F40E
Όνομα Μπλοκ
Miscellaneous Symbols and Pictographs
Όνομα
HORSE

Programming

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

Web

CSS
\01F40E
HtmlDecimal
🐎
HtmlHexadecimal
🐎
Url
%F0%9F%90%8E

Code

MD5
c8821163d40f69800586cfaed5448a59
Sha1
8e2a3647065aa0f36cdeaa21f625b16b448530aa
Base64
8J+Qjg==

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u1F40E';
console.log(char);  // Output: 🐎

Java:

char c = '\u1F40E';
System.out.println(c);  // Output: 🐎

JSON:

{"text": "\u1F40E"}  // Value: 🐎

Python:

char = '\u1F40E'
print(char)  # Output: 🐎

Perl:

my $char = "\x{1F40E}";
print $char;  # Output: 🐎

PHP:

$char = "\x{1F40E}";
echo $char;  // Output: 🐎

Ruby:

char = "\u{1F40E}"
puts char  # Output: 🐎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128014;</p>  <!-- Display: 🐎 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F40E;</p>  <!-- Display: 🐎 -->

URL Encoding:

// 🐎 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%90%8E

Encodings

MD5:

c8821163d40f69800586cfaed5448a59

SHA1:

8e2a3647065aa0f36cdeaa21f625b16b448530aa

Base64:

8J+Qjg==