Unicode Finder

"๐Ÿฅ" U+1F365(FISH CAKE WITH SWIRL DESIGN)

๐Ÿฅ
U+1F365
Nama Blok
Miscellaneous Symbols and Pictographs
Nama
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==

Contoh Penggunaan

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==