Unicode Finder

"🍯" U+1F36F(HONEY POT)

🍯
U+1F36F
区块名称
Miscellaneous Symbols and Pictographs
名称
HONEY POT

Programming

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

Web

CSS
\01F36F
HtmlDecimal
🍯
HtmlHexadecimal
🍯
Url
%F0%9F%8D%AF

Code

MD5
961fb9f3027b7152afea4037b43ed312
Sha1
3cdf8c0d298252213e98ca87f264f27ceaaeaa5d
Base64
8J+Nrw==

使用示例

Programming Languages

C:

char c = '\u1F36F';
printf("%c\n", c);  // Output: 🍯

JavaScript:

const char = '\u1F36F';
console.log(char);  // Output: 🍯

Java:

char c = '\u1F36F';
System.out.println(c);  // Output: 🍯

JSON:

{"text": "\u1F36F"}  // Value: 🍯

Python:

char = '\u1F36F'
print(char)  # Output: 🍯

Perl:

my $char = "\x{1F36F}";
print $char;  # Output: 🍯

PHP:

$char = "\x{1F36F}";
echo $char;  // Output: 🍯

Ruby:

char = "\u{1F36F}"
puts char  # Output: 🍯

Rust:

let c = '\u{1F36F}';
println!("{}", c);  // Output: 🍯

Go:

char := '\u1F36F'
fmt.Printf("%c\n", char)  // Output: 🍯

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F36F";  /* Display: 🍯 */
}

HTML Decimal:

<p>HTML decimal: &#127855;</p>  <!-- Display: 🍯 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F36F;</p>  <!-- Display: 🍯 -->

URL Encoding:

// 🍯 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8D%AF

Encodings

MD5:

961fb9f3027b7152afea4037b43ed312

SHA1:

3cdf8c0d298252213e98ca87f264f27ceaaeaa5d

Base64:

8J+Nrw==