Unicode Finder

"๐Ÿข" U+1F422(TURTLE)

๐Ÿข
U+1F422
Nama Blok
Miscellaneous Symbols and Pictographs
Nama
TURTLE

Programming

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

Web

CSS
\01F422
HtmlDecimal
🐢
HtmlHexadecimal
🐢
Url
%F0%9F%90%A2

Code

MD5
b82db7b9e5924c2c3f41db67627e26c3
Sha1
49dc1817412e1fd7600f6ebdec2485f18c9fdcb0
Base64
8J+Qog==

Contoh Penggunaan

Programming Languages

C:

char c = '\u1F422';
printf("%c\n", c);  // Output: ๐Ÿข

JavaScript:

const char = '\u1F422';
console.log(char);  // Output: ๐Ÿข

Java:

char c = '\u1F422';
System.out.println(c);  // Output: ๐Ÿข

JSON:

{"text": "\u1F422"}  // Value: ๐Ÿข

Python:

char = '\u1F422'
print(char)  # Output: ๐Ÿข

Perl:

my $char = "\x{1F422}";
print $char;  # Output: ๐Ÿข

PHP:

$char = "\x{1F422}";
echo $char;  // Output: ๐Ÿข

Ruby:

char = "\u{1F422}"
puts char  # Output: ๐Ÿข

Rust:

let c = '\u{1F422}';
println!("{}", c);  // Output: ๐Ÿข

Go:

char := '\u1F422'
fmt.Printf("%c\n", char)  // Output: ๐Ÿข

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F422";  /* Display: ๐Ÿข */
}

HTML Decimal:

<p>HTML decimal: &#128034;</p>  <!-- Display: ๐Ÿข -->

HTML Hexadecimal:

<p>HTML hex: &#x1F422;</p>  <!-- Display: ๐Ÿข -->

URL Encoding:

// ๐Ÿข URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%90%A2

Encodings

MD5:

b82db7b9e5924c2c3f41db67627e26c3

SHA1:

49dc1817412e1fd7600f6ebdec2485f18c9fdcb0

Base64:

8J+Qog==