Unicode Finder

"📼" U+1F4FC(VIDEOCASSETTE)

📼
U+1F4FC
区块名称
Miscellaneous Symbols and Pictographs
名称
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==

使用示例

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==