Unicode Finder

"๐Ÿ‘ผ" U+1F47C(BABY ANGEL)

๐Ÿ‘ผ
U+1F47C
ุงุณู… ุงู„ูƒุชู„ุฉ
Miscellaneous Symbols and Pictographs
ุงู„ุงุณู…
BABY ANGEL

Programming

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

Web

CSS
\01F47C
HtmlDecimal
👼
HtmlHexadecimal
👼
Url
%F0%9F%91%BC

Code

MD5
239da1c0934eb3c5d01f238a2ef3bfbd
Sha1
ec07250297d7dfd6f3913cd8c674b495b1661821
Base64
8J+RvA==

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

Programming Languages

C:

char c = '\u1F47C';
printf("%c\n", c);  // Output: ๐Ÿ‘ผ

JavaScript:

const char = '\u1F47C';
console.log(char);  // Output: ๐Ÿ‘ผ

Java:

char c = '\u1F47C';
System.out.println(c);  // Output: ๐Ÿ‘ผ

JSON:

{"text": "\u1F47C"}  // Value: ๐Ÿ‘ผ

Python:

char = '\u1F47C'
print(char)  # Output: ๐Ÿ‘ผ

Perl:

my $char = "\x{1F47C}";
print $char;  # Output: ๐Ÿ‘ผ

PHP:

$char = "\x{1F47C}";
echo $char;  // Output: ๐Ÿ‘ผ

Ruby:

char = "\u{1F47C}"
puts char  # Output: ๐Ÿ‘ผ

Rust:

let c = '\u{1F47C}';
println!("{}", c);  // Output: ๐Ÿ‘ผ

Go:

char := '\u1F47C'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ‘ผ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F47C";  /* Display: ๐Ÿ‘ผ */
}

HTML Decimal:

<p>HTML decimal: &#128124;</p>  <!-- Display: ๐Ÿ‘ผ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F47C;</p>  <!-- Display: ๐Ÿ‘ผ -->

URL Encoding:

// ๐Ÿ‘ผ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%91%BC

Encodings

MD5:

239da1c0934eb3c5d01f238a2ef3bfbd

SHA1:

ec07250297d7dfd6f3913cd8c674b495b1661821

Base64:

8J+RvA==