Unicode Finder

"๐Ÿข" U+1F762(ALCHEMICAL SYMBOL FOR DISSOLVE-2)

๐Ÿข
U+1F762
๋ธ”๋ก ์ด๋ฆ„
Alchemical Symbols
์ด๋ฆ„
ALCHEMICAL SYMBOL FOR DISSOLVE-2

Programming

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

Web

CSS
\01F762
HtmlDecimal
🝢
HtmlHexadecimal
🝢
Url
%F0%9F%9D%A2

Code

MD5
523dc0b84f4f7139482b6f4799323119
Sha1
d87e888846bc27f812af19bd4c55fe7e64c58469
Base64
8J+dog==

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

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F762"}  // Value: ๐Ÿข

Python:

char = '\u1F762'
print(char)  # Output: ๐Ÿข

Perl:

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

PHP:

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

Ruby:

char = "\u{1F762}"
puts char  # Output: ๐Ÿข

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

523dc0b84f4f7139482b6f4799323119

SHA1:

d87e888846bc27f812af19bd4c55fe7e64c58469

Base64:

8J+dog==