Unicode Finder

"๐Ÿญ" U+1F36D(LOLLIPOP)

๐Ÿญ
U+1F36D
Nome del Blocco
Miscellaneous Symbols and Pictographs
Nome
LOLLIPOP

Programming

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

Web

CSS
\01F36D
HtmlDecimal
🍭
HtmlHexadecimal
🍭
Url
%F0%9F%8D%AD

Code

MD5
ae447bd018a1c69a99f3234949d033af
Sha1
94a5c8aeff49c921ba48d75c5b05994d452cae67
Base64
8J+NrQ==

Esempi di Utilizzo

Programming Languages

C:

char c = '\u1F36D';
printf("%c\n", c);  // Output: ๐Ÿญ

JavaScript:

const char = '\u1F36D';
console.log(char);  // Output: ๐Ÿญ

Java:

char c = '\u1F36D';
System.out.println(c);  // Output: ๐Ÿญ

JSON:

{"text": "\u1F36D"}  // Value: ๐Ÿญ

Python:

char = '\u1F36D'
print(char)  # Output: ๐Ÿญ

Perl:

my $char = "\x{1F36D}";
print $char;  # Output: ๐Ÿญ

PHP:

$char = "\x{1F36D}";
echo $char;  // Output: ๐Ÿญ

Ruby:

char = "\u{1F36D}"
puts char  # Output: ๐Ÿญ

Rust:

let c = '\u{1F36D}';
println!("{}", c);  // Output: ๐Ÿญ

Go:

char := '\u1F36D'
fmt.Printf("%c\n", char)  // Output: ๐Ÿญ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F36D";  /* Display: ๐Ÿญ */
}

HTML Decimal:

<p>HTML decimal: &#127853;</p>  <!-- Display: ๐Ÿญ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F36D;</p>  <!-- Display: ๐Ÿญ -->

URL Encoding:

// ๐Ÿญ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8D%AD

Encodings

MD5:

ae447bd018a1c69a99f3234949d033af

SHA1:

94a5c8aeff49c921ba48d75c5b05994d452cae67

Base64:

8J+NrQ==