Unicode Finder

"๐Ÿ“ง" U+1F4E7(E-MAIL SYMBOL)

๐Ÿ“ง
U+1F4E7
Block Name
Miscellaneous Symbols and Pictographs
Name
E-MAIL SYMBOL

Programming

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

Web

CSS
\01F4E7
HtmlDecimal
📧
HtmlHexadecimal
📧
Url
%F0%9F%93%A7

Code

MD5
a7b5422acc41b338c27d5c4963705c8e
Sha1
4557dcd39e92d6614e8905a6c1b8514cfc8df814
Base64
8J+Tpw==

Usage Examples

Programming Languages

C:

char c = '\u1F4E7';
printf("%c\n", c);  // Output: ๐Ÿ“ง

JavaScript:

const char = '\u1F4E7';
console.log(char);  // Output: ๐Ÿ“ง

Java:

char c = '\u1F4E7';
System.out.println(c);  // Output: ๐Ÿ“ง

JSON:

{"text": "\u1F4E7"}  // Value: ๐Ÿ“ง

Python:

char = '\u1F4E7'
print(char)  # Output: ๐Ÿ“ง

Perl:

my $char = "\x{1F4E7}";
print $char;  # Output: ๐Ÿ“ง

PHP:

$char = "\x{1F4E7}";
echo $char;  // Output: ๐Ÿ“ง

Ruby:

char = "\u{1F4E7}"
puts char  # Output: ๐Ÿ“ง

Rust:

let c = '\u{1F4E7}';
println!("{}", c);  // Output: ๐Ÿ“ง

Go:

char := '\u1F4E7'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ“ง

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F4E7";  /* Display: ๐Ÿ“ง */
}

HTML Decimal:

<p>HTML decimal: &#128231;</p>  <!-- Display: ๐Ÿ“ง -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4E7;</p>  <!-- Display: ๐Ÿ“ง -->

URL Encoding:

// ๐Ÿ“ง URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%93%A7

Encodings

MD5:

a7b5422acc41b338c27d5c4963705c8e

SHA1:

4557dcd39e92d6614e8905a6c1b8514cfc8df814

Base64:

8J+Tpw==