Unicode Finder

"๐Ÿ”ˆ" U+1F508(SPEAKER)

๐Ÿ”ˆ
U+1F508
Block Name
Miscellaneous Symbols and Pictographs
Name
SPEAKER

Programming

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

Web

CSS
\01F508
HtmlDecimal
🔈
HtmlHexadecimal
🔈
Url
%F0%9F%94%88

Code

MD5
7a3df366c52f5baf92ebc7fa1afebbe0
Sha1
47e6fc4d8e4a025a59bb43711cf39f619a0e9a91
Base64
8J+UiA==

Usage Examples

Programming Languages

C:

char c = '\u1F508';
printf("%c\n", c);  // Output: ๐Ÿ”ˆ

JavaScript:

const char = '\u1F508';
console.log(char);  // Output: ๐Ÿ”ˆ

Java:

char c = '\u1F508';
System.out.println(c);  // Output: ๐Ÿ”ˆ

JSON:

{"text": "\u1F508"}  // Value: ๐Ÿ”ˆ

Python:

char = '\u1F508'
print(char)  # Output: ๐Ÿ”ˆ

Perl:

my $char = "\x{1F508}";
print $char;  # Output: ๐Ÿ”ˆ

PHP:

$char = "\x{1F508}";
echo $char;  // Output: ๐Ÿ”ˆ

Ruby:

char = "\u{1F508}"
puts char  # Output: ๐Ÿ”ˆ

Rust:

let c = '\u{1F508}';
println!("{}", c);  // Output: ๐Ÿ”ˆ

Go:

char := '\u1F508'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ”ˆ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F508";  /* Display: ๐Ÿ”ˆ */
}

HTML Decimal:

<p>HTML decimal: &#128264;</p>  <!-- Display: ๐Ÿ”ˆ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F508;</p>  <!-- Display: ๐Ÿ”ˆ -->

URL Encoding:

// ๐Ÿ”ˆ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%94%88

Encodings

MD5:

7a3df366c52f5baf92ebc7fa1afebbe0

SHA1:

47e6fc4d8e4a025a59bb43711cf39f619a0e9a91

Base64:

8J+UiA==