Unicode Finder

"๐Ÿ—ซ" U+1F5EB(THREE SPEECH BUBBLES)

๐Ÿ—ซ
U+1F5EB
Block Name
Miscellaneous Symbols and Pictographs
Name
THREE SPEECH BUBBLES

Programming

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

Web

CSS
\01F5EB
HtmlDecimal
🗫
HtmlHexadecimal
🗫
Url
%F0%9F%97%AB

Code

MD5
cd3af8550fe505cef4de8f87afb64afe
Sha1
b32a81ea326d3c3910cee504f25a98dd706cca42
Base64
8J+Xqw==

Usage Examples

Programming Languages

C:

char c = '\u1F5EB';
printf("%c\n", c);  // Output: ๐Ÿ—ซ

JavaScript:

const char = '\u1F5EB';
console.log(char);  // Output: ๐Ÿ—ซ

Java:

char c = '\u1F5EB';
System.out.println(c);  // Output: ๐Ÿ—ซ

JSON:

{"text": "\u1F5EB"}  // Value: ๐Ÿ—ซ

Python:

char = '\u1F5EB'
print(char)  # Output: ๐Ÿ—ซ

Perl:

my $char = "\x{1F5EB}";
print $char;  # Output: ๐Ÿ—ซ

PHP:

$char = "\x{1F5EB}";
echo $char;  // Output: ๐Ÿ—ซ

Ruby:

char = "\u{1F5EB}"
puts char  # Output: ๐Ÿ—ซ

Rust:

let c = '\u{1F5EB}';
println!("{}", c);  // Output: ๐Ÿ—ซ

Go:

char := '\u1F5EB'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ—ซ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F5EB";  /* Display: ๐Ÿ—ซ */
}

HTML Decimal:

<p>HTML decimal: &#128491;</p>  <!-- Display: ๐Ÿ—ซ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5EB;</p>  <!-- Display: ๐Ÿ—ซ -->

URL Encoding:

// ๐Ÿ—ซ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%97%AB

Encodings

MD5:

cd3af8550fe505cef4de8f87afb64afe

SHA1:

b32a81ea326d3c3910cee504f25a98dd706cca42

Base64:

8J+Xqw==