Unicode Finder

"๐Ÿ’ฌ" U+1F4AC(SPEECH BALLOON)

๐Ÿ’ฌ
U+1F4AC
Block Name
Miscellaneous Symbols and Pictographs
Name
SPEECH BALLOON

Programming

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

Web

CSS
\01F4AC
HtmlDecimal
💬
HtmlHexadecimal
💬
Url
%F0%9F%92%AC

Code

MD5
fdbe5f31832eb8e8697153ce6d003c69
Sha1
eabdd40e59a87ce1a27dc76a0a1d0fb7bcec75a1
Base64
8J+SrA==

Usage Examples

Programming Languages

C:

char c = '\u1F4AC';
printf("%c\n", c);  // Output: ๐Ÿ’ฌ

JavaScript:

const char = '\u1F4AC';
console.log(char);  // Output: ๐Ÿ’ฌ

Java:

char c = '\u1F4AC';
System.out.println(c);  // Output: ๐Ÿ’ฌ

JSON:

{"text": "\u1F4AC"}  // Value: ๐Ÿ’ฌ

Python:

char = '\u1F4AC'
print(char)  # Output: ๐Ÿ’ฌ

Perl:

my $char = "\x{1F4AC}";
print $char;  # Output: ๐Ÿ’ฌ

PHP:

$char = "\x{1F4AC}";
echo $char;  // Output: ๐Ÿ’ฌ

Ruby:

char = "\u{1F4AC}"
puts char  # Output: ๐Ÿ’ฌ

Rust:

let c = '\u{1F4AC}';
println!("{}", c);  // Output: ๐Ÿ’ฌ

Go:

char := '\u1F4AC'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ’ฌ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F4AC";  /* Display: ๐Ÿ’ฌ */
}

HTML Decimal:

<p>HTML decimal: &#128172;</p>  <!-- Display: ๐Ÿ’ฌ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4AC;</p>  <!-- Display: ๐Ÿ’ฌ -->

URL Encoding:

// ๐Ÿ’ฌ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%92%AC

Encodings

MD5:

fdbe5f31832eb8e8697153ce6d003c69

SHA1:

eabdd40e59a87ce1a27dc76a0a1d0fb7bcec75a1

Base64:

8J+SrA==