Unicode Finder

"πŸ“Ί" U+1F4FA(TELEVISION)

πŸ“Ί
U+1F4FA
Block Name
Miscellaneous Symbols and Pictographs
Name
TELEVISION

Programming

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

Web

CSS
\01F4FA
HtmlDecimal
📺
HtmlHexadecimal
📺
Url
%F0%9F%93%BA

Code

MD5
a387e277d91ef070a0699dabd550f5e7
Sha1
3c3f1480345e85285514e28a77507c52ce286e8a
Base64
8J+Tug==

Usage Examples

Programming Languages

C:

char c = '\u1F4FA';
printf("%c\n", c);  // Output: πŸ“Ί

JavaScript:

const char = '\u1F4FA';
console.log(char);  // Output: πŸ“Ί

Java:

char c = '\u1F4FA';
System.out.println(c);  // Output: πŸ“Ί

JSON:

{"text": "\u1F4FA"}  // Value: πŸ“Ί

Python:

char = '\u1F4FA'
print(char)  # Output: πŸ“Ί

Perl:

my $char = "\x{1F4FA}";
print $char;  # Output: πŸ“Ί

PHP:

$char = "\x{1F4FA}";
echo $char;  // Output: πŸ“Ί

Ruby:

char = "\u{1F4FA}"
puts char  # Output: πŸ“Ί

Rust:

let c = '\u{1F4FA}';
println!("{}", c);  // Output: πŸ“Ί

Go:

char := '\u1F4FA'
fmt.Printf("%c\n", char)  // Output: πŸ“Ί

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F4FA";  /* Display: πŸ“Ί */
}

HTML Decimal:

<p>HTML decimal: &#128250;</p>  <!-- Display: πŸ“Ί -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4FA;</p>  <!-- Display: πŸ“Ί -->

URL Encoding:

// πŸ“Ί URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%93%BA

Encodings

MD5:

a387e277d91ef070a0699dabd550f5e7

SHA1:

3c3f1480345e85285514e28a77507c52ce286e8a

Base64:

8J+Tug==