Unicode Finder

"๐Ÿท" U+1F437(PIG FACE)

๐Ÿท
U+1F437
ุงุณู… ุงู„ูƒุชู„ุฉ
Miscellaneous Symbols and Pictographs
ุงู„ุงุณู…
PIG FACE

Programming

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

Web

CSS
\01F437
HtmlDecimal
🐷
HtmlHexadecimal
🐷
Url
%F0%9F%90%B7

Code

MD5
620f1a71facc59cec8dc610858c7bda7
Sha1
b08429ef5e1ac12c6f56e95864cf07ca6366f8f3
Base64
8J+Qtw==

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

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F437"}  // Value: ๐Ÿท

Python:

char = '\u1F437'
print(char)  # Output: ๐Ÿท

Perl:

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

PHP:

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

Ruby:

char = "\u{1F437}"
puts char  # Output: ๐Ÿท

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

620f1a71facc59cec8dc610858c7bda7

SHA1:

b08429ef5e1ac12c6f56e95864cf07ca6366f8f3

Base64:

8J+Qtw==