Unicode Finder

"📻" U+1F4FB(RADIO)

📻
U+1F4FB
区块名称
Miscellaneous Symbols and Pictographs
名称
RADIO

Programming

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

Web

CSS
\01F4FB
HtmlDecimal
📻
HtmlHexadecimal
📻
Url
%F0%9F%93%BB

Code

MD5
989710a868118180475e7d6deaa12c70
Sha1
179e9f92e4ca9b7f9c5b63a68a3cf13c47196254
Base64
8J+Tuw==

使用示例

Programming Languages

C:

char c = '\u1F4FB';
printf("%c\n", c);  // Output: 📻

JavaScript:

const char = '\u1F4FB';
console.log(char);  // Output: 📻

Java:

char c = '\u1F4FB';
System.out.println(c);  // Output: 📻

JSON:

{"text": "\u1F4FB"}  // Value: 📻

Python:

char = '\u1F4FB'
print(char)  # Output: 📻

Perl:

my $char = "\x{1F4FB}";
print $char;  # Output: 📻

PHP:

$char = "\x{1F4FB}";
echo $char;  // Output: 📻

Ruby:

char = "\u{1F4FB}"
puts char  # Output: 📻

Rust:

let c = '\u{1F4FB}';
println!("{}", c);  // Output: 📻

Go:

char := '\u1F4FB'
fmt.Printf("%c\n", char)  // Output: 📻

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F4FB";  /* Display: 📻 */
}

HTML Decimal:

<p>HTML decimal: &#128251;</p>  <!-- Display: 📻 -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4FB;</p>  <!-- Display: 📻 -->

URL Encoding:

// 📻 URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%93%BB

Encodings

MD5:

989710a868118180475e7d6deaa12c70

SHA1:

179e9f92e4ca9b7f9c5b63a68a3cf13c47196254

Base64:

8J+Tuw==