Unicode Finder

"๐Ÿฏ" U+1F42F(TIGER FACE)

๐Ÿฏ
U+1F42F
Nume Bloc
Miscellaneous Symbols and Pictographs
Nume
TIGER FACE

Programming

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

Web

CSS
\01F42F
HtmlDecimal
🐯
HtmlHexadecimal
🐯
Url
%F0%9F%90%AF

Code

MD5
db2805594bd21f56fce1ed185308c6c3
Sha1
9b67b4c2994ecbc7d6bca91ebf8464b08d2eb1d0
Base64
8J+Qrw==

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F42F"}  // Value: ๐Ÿฏ

Python:

char = '\u1F42F'
print(char)  # Output: ๐Ÿฏ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F42F}"
puts char  # Output: ๐Ÿฏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

db2805594bd21f56fce1ed185308c6c3

SHA1:

9b67b4c2994ecbc7d6bca91ebf8464b08d2eb1d0

Base64:

8J+Qrw==