Unicode Finder

"๐Ÿฃ" U+1F363(SUSHI)

๐Ÿฃ
U+1F363
Nama Blok
Miscellaneous Symbols and Pictographs
Nama
SUSHI

Programming

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

Web

CSS
\01F363
HtmlDecimal
🍣
HtmlHexadecimal
🍣
Url
%F0%9F%8D%A3

Code

MD5
ada444aa613752c1574462ba9008e9e3
Sha1
21e74ada84aef33f294fed6cad90f5bd8037a389
Base64
8J+Now==

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F363"}  // Value: ๐Ÿฃ

Python:

char = '\u1F363'
print(char)  # Output: ๐Ÿฃ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F363}"
puts char  # Output: ๐Ÿฃ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

ada444aa613752c1574462ba9008e9e3

SHA1:

21e74ada84aef33f294fed6cad90f5bd8037a389

Base64:

8J+Now==