Unicode Finder

"๐Ÿ“ผ" U+1F4FC(VIDEOCASSETTE)

๐Ÿ“ผ
U+1F4FC
Block Name
Miscellaneous Symbols and Pictographs
Name
VIDEOCASSETTE

Programming

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

Web

CSS
\01F4FC
HtmlDecimal
📼
HtmlHexadecimal
📼
Url
%F0%9F%93%BC

Code

MD5
fc01eed5908933729616f5c653fc3a9b
Sha1
df024fc6894f4f917adef83c24491675831f378e
Base64
8J+TvA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F4FC"}  // Value: ๐Ÿ“ผ

Python:

char = '\u1F4FC'
print(char)  # Output: ๐Ÿ“ผ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F4FC}"
puts char  # Output: ๐Ÿ“ผ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

fc01eed5908933729616f5c653fc3a9b

SHA1:

df024fc6894f4f917adef83c24491675831f378e

Base64:

8J+TvA==