Unicode Finder

"๐Ÿœ" U+1F35C(STEAMING BOWL)

๐Ÿœ
U+1F35C
Nome do Bloco
Miscellaneous Symbols and Pictographs
Nome
STEAMING BOWL

Programming

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

Web

CSS
\01F35C
HtmlDecimal
🍜
HtmlHexadecimal
🍜
Url
%F0%9F%8D%9C

Code

MD5
327a828bacc218780688b10fcd2f2613
Sha1
494c78f01c68e0b2187fd5e89e110ee4a2d38da9
Base64
8J+NnA==

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F35C"}  // Value: ๐Ÿœ

Python:

char = '\u1F35C'
print(char)  # Output: ๐Ÿœ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F35C}"
puts char  # Output: ๐Ÿœ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

327a828bacc218780688b10fcd2f2613

SHA1:

494c78f01c68e0b2187fd5e89e110ee4a2d38da9

Base64:

8J+NnA==