Unicode Finder

"๐Ÿค" U+1F764(ALCHEMICAL SYMBOL FOR PUTREFACTION)

๐Ÿค
U+1F764
Block Name
Alchemical Symbols
Name
ALCHEMICAL SYMBOL FOR PUTREFACTION

Programming

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

Web

CSS
\01F764
HtmlDecimal
🝤
HtmlHexadecimal
🝤
Url
%F0%9F%9D%A4

Code

MD5
c56be4051581076ad7fb6cbf45c34d1b
Sha1
cb188a913e2da010fc655e42d3f0b0a13cc7ec2d
Base64
8J+dpA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F764"}  // Value: ๐Ÿค

Python:

char = '\u1F764'
print(char)  # Output: ๐Ÿค

Perl:

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

PHP:

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

Ruby:

char = "\u{1F764}"
puts char  # Output: ๐Ÿค

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

c56be4051581076ad7fb6cbf45c34d1b

SHA1:

cb188a913e2da010fc655e42d3f0b0a13cc7ec2d

Base64:

8J+dpA==