Unicode Finder

"๐Ÿฃ" U+1F763(ALCHEMICAL SYMBOL FOR PURIFY)

๐Ÿฃ
U+1F763
Block Name
Alchemical Symbols
Name
ALCHEMICAL SYMBOL FOR PURIFY

Programming

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

Web

CSS
\01F763
HtmlDecimal
🝣
HtmlHexadecimal
🝣
Url
%F0%9F%9D%A3

Code

MD5
890ff8393e814fc571836431c44cf5d2
Sha1
a638083b9d87fe2c2e3c608cea09541fc6dc0ec7
Base64
8J+dow==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F763"}  // Value: ๐Ÿฃ

Python:

char = '\u1F763'
print(char)  # Output: ๐Ÿฃ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F763}"
puts char  # Output: ๐Ÿฃ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

890ff8393e814fc571836431c44cf5d2

SHA1:

a638083b9d87fe2c2e3c608cea09541fc6dc0ec7

Base64:

8J+dow==