Unicode Finder

"🖅" U+1F585(FLYING ENVELOPE)

🖅
U+1F585
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
FLYING ENVELOPE

Programming

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

Web

CSS
\01F585
HtmlDecimal
🖅
HtmlHexadecimal
🖅
Url
%F0%9F%96%85

Code

MD5
be4a2d13405835ade18b09441fc9dfd8
Sha1
046ae64d1364e4fa1d9bb87c8d90ea35e3604673
Base64
8J+WhQ==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F585';
console.log(char);  // Output: 🖅

Java:

char c = '\u1F585';
System.out.println(c);  // Output: 🖅

JSON:

{"text": "\u1F585"}  // Value: 🖅

Python:

char = '\u1F585'
print(char)  # Output: 🖅

Perl:

my $char = "\x{1F585}";
print $char;  # Output: 🖅

PHP:

$char = "\x{1F585}";
echo $char;  // Output: 🖅

Ruby:

char = "\u{1F585}"
puts char  # Output: 🖅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128389;</p>  <!-- Display: 🖅 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F585;</p>  <!-- Display: 🖅 -->

URL Encoding:

// 🖅 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%96%85

Encodings

MD5:

be4a2d13405835ade18b09441fc9dfd8

SHA1:

046ae64d1364e4fa1d9bb87c8d90ea35e3604673

Base64:

8J+WhQ==