Unicode Finder

"๐Ÿ“ž" U+1F4DE(TELEPHONE RECEIVER)

๐Ÿ“ž
U+1F4DE
Block Name
Miscellaneous Symbols and Pictographs
Name
TELEPHONE RECEIVER

Programming

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

Web

CSS
\01F4DE
HtmlDecimal
📞
HtmlHexadecimal
📞
Url
%F0%9F%93%9E

Code

MD5
5aa48246ca010cd59f8a301e4a32404d
Sha1
72215e6ddadfea8251af4026fcc56627dd22552e
Base64
8J+Tng==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F4DE"}  // Value: ๐Ÿ“ž

Python:

char = '\u1F4DE'
print(char)  # Output: ๐Ÿ“ž

Perl:

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

PHP:

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

Ruby:

char = "\u{1F4DE}"
puts char  # Output: ๐Ÿ“ž

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

5aa48246ca010cd59f8a301e4a32404d

SHA1:

72215e6ddadfea8251af4026fcc56627dd22552e

Base64:

8J+Tng==