Unicode Finder

"๐Ÿ™ญ" U+1F66D(UPWARDS ROCKET)

๐Ÿ™ญ
U+1F66D
Block Name
Unknown Block
Name
UPWARDS ROCKET

Programming

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

Web

CSS
\01F66D
HtmlDecimal
🙭
HtmlHexadecimal
🙭
Url
%F0%9F%99%AD

Code

MD5
ddd356d9c911cd77b1e0f2ca16f9f616
Sha1
91825043c9fa0b8151714df9346ce83896701143
Base64
8J+ZrQ==

Usage Examples

Programming Languages

C:

char c = '\u1F66D';
printf("%c\n", c);  // Output: ๐Ÿ™ญ

JavaScript:

const char = '\u1F66D';
console.log(char);  // Output: ๐Ÿ™ญ

Java:

char c = '\u1F66D';
System.out.println(c);  // Output: ๐Ÿ™ญ

JSON:

{"text": "\u1F66D"}  // Value: ๐Ÿ™ญ

Python:

char = '\u1F66D'
print(char)  # Output: ๐Ÿ™ญ

Perl:

my $char = "\x{1F66D}";
print $char;  # Output: ๐Ÿ™ญ

PHP:

$char = "\x{1F66D}";
echo $char;  // Output: ๐Ÿ™ญ

Ruby:

char = "\u{1F66D}"
puts char  # Output: ๐Ÿ™ญ

Rust:

let c = '\u{1F66D}';
println!("{}", c);  // Output: ๐Ÿ™ญ

Go:

char := '\u1F66D'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ™ญ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F66D";  /* Display: ๐Ÿ™ญ */
}

HTML Decimal:

<p>HTML decimal: &#128621;</p>  <!-- Display: ๐Ÿ™ญ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F66D;</p>  <!-- Display: ๐Ÿ™ญ -->

URL Encoding:

// ๐Ÿ™ญ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%99%AD

Encodings

MD5:

ddd356d9c911cd77b1e0f2ca16f9f616

SHA1:

91825043c9fa0b8151714df9346ce83896701143

Base64:

8J+ZrQ==