Unicode Finder

"๐Ÿ—ฌ" U+1F5EC(LEFT THOUGHT BUBBLE)

๐Ÿ—ฌ
U+1F5EC
Block Name
Miscellaneous Symbols and Pictographs
Name
LEFT THOUGHT BUBBLE

Programming

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

Web

CSS
\01F5EC
HtmlDecimal
🗬
HtmlHexadecimal
🗬
Url
%F0%9F%97%AC

Code

MD5
3e9e803c325b22d6e06852cc3ac50581
Sha1
cae024e8a74cadf005166babf669af8bb1714c49
Base64
8J+XrA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F5EC"}  // Value: ๐Ÿ—ฌ

Python:

char = '\u1F5EC'
print(char)  # Output: ๐Ÿ—ฌ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F5EC}"
puts char  # Output: ๐Ÿ—ฌ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

3e9e803c325b22d6e06852cc3ac50581

SHA1:

cae024e8a74cadf005166babf669af8bb1714c49

Base64:

8J+XrA==