Unicode Finder

"๐Ÿญ" U+1F76D(ALCHEMICAL SYMBOL FOR RETORT)

๐Ÿญ
U+1F76D
๋ธ”๋ก ์ด๋ฆ„
Alchemical Symbols
์ด๋ฆ„
ALCHEMICAL SYMBOL FOR RETORT

Programming

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

Web

CSS
\01F76D
HtmlDecimal
🝭
HtmlHexadecimal
🝭
Url
%F0%9F%9D%AD

Code

MD5
3aac3bc66c519167bc1a47153ad2b51f
Sha1
02c9939fdc4a770662fe5e4e9e49aab0e44e6cc6
Base64
8J+drQ==

์‚ฌ์šฉ ์˜ˆ์‹œ

Programming Languages

C:

char c = '\u1F76D';
printf("%c\n", c);  // Output: ๐Ÿญ

JavaScript:

const char = '\u1F76D';
console.log(char);  // Output: ๐Ÿญ

Java:

char c = '\u1F76D';
System.out.println(c);  // Output: ๐Ÿญ

JSON:

{"text": "\u1F76D"}  // Value: ๐Ÿญ

Python:

char = '\u1F76D'
print(char)  # Output: ๐Ÿญ

Perl:

my $char = "\x{1F76D}";
print $char;  # Output: ๐Ÿญ

PHP:

$char = "\x{1F76D}";
echo $char;  // Output: ๐Ÿญ

Ruby:

char = "\u{1F76D}"
puts char  # Output: ๐Ÿญ

Rust:

let c = '\u{1F76D}';
println!("{}", c);  // Output: ๐Ÿญ

Go:

char := '\u1F76D'
fmt.Printf("%c\n", char)  // Output: ๐Ÿญ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F76D";  /* Display: ๐Ÿญ */
}

HTML Decimal:

<p>HTML decimal: &#128877;</p>  <!-- Display: ๐Ÿญ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F76D;</p>  <!-- Display: ๐Ÿญ -->

URL Encoding:

// ๐Ÿญ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%9D%AD

Encodings

MD5:

3aac3bc66c519167bc1a47153ad2b51f

SHA1:

02c9939fdc4a770662fe5e4e9e49aab0e44e6cc6

Base64:

8J+drQ==