Unicode Finder

"๐Ÿข" U+1F362(ODEN)

๐Ÿข
U+1F362
Nome del Blocco
Miscellaneous Symbols and Pictographs
Nome
ODEN

Programming

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

Web

CSS
\01F362
HtmlDecimal
🍢
HtmlHexadecimal
🍢
Url
%F0%9F%8D%A2

Code

MD5
ecb1a697659c211132619cc42e62641c
Sha1
bf9ceea6ec35934e6131705009ba83f0d248a598
Base64
8J+Nog==

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F362"}  // Value: ๐Ÿข

Python:

char = '\u1F362'
print(char)  # Output: ๐Ÿข

Perl:

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

PHP:

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

Ruby:

char = "\u{1F362}"
puts char  # Output: ๐Ÿข

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

ecb1a697659c211132619cc42e62641c

SHA1:

bf9ceea6ec35934e6131705009ba83f0d248a598

Base64:

8J+Nog==