Unicode Finder

"🖄" U+1F584(ENVELOPE WITH LIGHTNING)

🖄
U+1F584
Nombre del Bloque
Miscellaneous Symbols and Pictographs
Nombre
ENVELOPE WITH LIGHTNING

Programming

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

Web

CSS
\01F584
HtmlDecimal
🖄
HtmlHexadecimal
🖄
Url
%F0%9F%96%84

Code

MD5
e6a2c5907b677c78a46a182c1726ca4b
Sha1
57b8fb3faf2af85064c77043e82e7653e0644a53
Base64
8J+WhA==

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1F584';
console.log(char);  // Output: 🖄

Java:

char c = '\u1F584';
System.out.println(c);  // Output: 🖄

JSON:

{"text": "\u1F584"}  // Value: 🖄

Python:

char = '\u1F584'
print(char)  # Output: 🖄

Perl:

my $char = "\x{1F584}";
print $char;  # Output: 🖄

PHP:

$char = "\x{1F584}";
echo $char;  // Output: 🖄

Ruby:

char = "\u{1F584}"
puts char  # Output: 🖄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#128388;</p>  <!-- Display: 🖄 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F584;</p>  <!-- Display: 🖄 -->

URL Encoding:

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

Encodings

MD5:

e6a2c5907b677c78a46a182c1726ca4b

SHA1:

57b8fb3faf2af85064c77043e82e7653e0644a53

Base64:

8J+WhA==