Unicode Finder

"🍥" U+1F365(FISH CAKE WITH SWIRL DESIGN)

🍥
U+1F365
区块名称
Miscellaneous Symbols and Pictographs
名称
FISH CAKE WITH SWIRL DESIGN

Programming

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

Web

CSS
\01F365
HtmlDecimal
🍥
HtmlHexadecimal
🍥
Url
%F0%9F%8D%A5

Code

MD5
c0b7e680d22e4ead1bb2a3c16fd47a17
Sha1
049144c857fdb6f0b3552aa1c157c8a7e4c0189f
Base64
8J+NpQ==

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1F365';
console.log(char);  // Output: 🍥

Java:

char c = '\u1F365';
System.out.println(c);  // Output: 🍥

JSON:

{"text": "\u1F365"}  // Value: 🍥

Python:

char = '\u1F365'
print(char)  # Output: 🍥

Perl:

my $char = "\x{1F365}";
print $char;  # Output: 🍥

PHP:

$char = "\x{1F365}";
echo $char;  // Output: 🍥

Ruby:

char = "\u{1F365}"
puts char  # Output: 🍥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127845;</p>  <!-- Display: 🍥 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F365;</p>  <!-- Display: 🍥 -->

URL Encoding:

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

Encodings

MD5:

c0b7e680d22e4ead1bb2a3c16fd47a17

SHA1:

049144c857fdb6f0b3552aa1c157c8a7e4c0189f

Base64:

8J+NpQ==