Unicode Finder

"🌾" U+1F33E(EAR OF RICE)

🌾
U+1F33E
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
EAR OF RICE

Programming

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

Web

CSS
\01F33E
HtmlDecimal
🌾
HtmlHexadecimal
🌾
Url
%F0%9F%8C%BE

Code

MD5
405d3defad1c3ebdb4d1c730b6279ac9
Sha1
1ac73d3cfc33b0d4a963ab4b70c8104db57b87e0
Base64
8J+Mvg==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F33E';
console.log(char);  // Output: 🌾

Java:

char c = '\u1F33E';
System.out.println(c);  // Output: 🌾

JSON:

{"text": "\u1F33E"}  // Value: 🌾

Python:

char = '\u1F33E'
print(char)  # Output: 🌾

Perl:

my $char = "\x{1F33E}";
print $char;  # Output: 🌾

PHP:

$char = "\x{1F33E}";
echo $char;  // Output: 🌾

Ruby:

char = "\u{1F33E}"
puts char  # Output: 🌾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#127806;</p>  <!-- Display: 🌾 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F33E;</p>  <!-- Display: 🌾 -->

URL Encoding:

// 🌾 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8C%BE

Encodings

MD5:

405d3defad1c3ebdb4d1c730b6279ac9

SHA1:

1ac73d3cfc33b0d4a963ab4b70c8104db57b87e0

Base64:

8J+Mvg==