Unicode Finder

"๐Ÿฟ" U+1F43F(CHIPMUNK)

๐Ÿฟ
U+1F43F
ุงุณู… ุงู„ูƒุชู„ุฉ
Miscellaneous Symbols and Pictographs
ุงู„ุงุณู…
CHIPMUNK

Programming

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

Web

CSS
\01F43F
HtmlDecimal
🐿
HtmlHexadecimal
🐿
Url
%F0%9F%90%BF

Code

MD5
4ac03b5fa7c597bf013b3dde27ec7170
Sha1
c21b77ef7fba982d6c318f5cc7fc4951e9cc14f8
Base64
8J+Qvw==

ุฃู…ุซู„ุฉ ุงู„ุงุณุชุฎุฏุงู…

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F43F"}  // Value: ๐Ÿฟ

Python:

char = '\u1F43F'
print(char)  # Output: ๐Ÿฟ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F43F}"
puts char  # Output: ๐Ÿฟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

4ac03b5fa7c597bf013b3dde27ec7170

SHA1:

c21b77ef7fba982d6c318f5cc7fc4951e9cc14f8

Base64:

8J+Qvw==