Unicode Finder

"๐Ÿœจ" U+1F728(ALCHEMICAL SYMBOL FOR VERDIGRIS)

๐Ÿœจ
U+1F728
Block Name
Alchemical Symbols
Name
ALCHEMICAL SYMBOL FOR VERDIGRIS

Programming

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

Web

CSS
\01F728
HtmlDecimal
🜨
HtmlHexadecimal
🜨
Url
%F0%9F%9C%A8

Code

MD5
c09721b24168356405eab0efde3a245e
Sha1
bfc698f89fb3a722d3d8543576d846e0ff1d3a2b
Base64
8J+cqA==

Usage Examples

Programming Languages

C:

char c = '\u1F728';
printf("%c\n", c);  // Output: ๐Ÿœจ

JavaScript:

const char = '\u1F728';
console.log(char);  // Output: ๐Ÿœจ

Java:

char c = '\u1F728';
System.out.println(c);  // Output: ๐Ÿœจ

JSON:

{"text": "\u1F728"}  // Value: ๐Ÿœจ

Python:

char = '\u1F728'
print(char)  # Output: ๐Ÿœจ

Perl:

my $char = "\x{1F728}";
print $char;  # Output: ๐Ÿœจ

PHP:

$char = "\x{1F728}";
echo $char;  // Output: ๐Ÿœจ

Ruby:

char = "\u{1F728}"
puts char  # Output: ๐Ÿœจ

Rust:

let c = '\u{1F728}';
println!("{}", c);  // Output: ๐Ÿœจ

Go:

char := '\u1F728'
fmt.Printf("%c\n", char)  // Output: ๐Ÿœจ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F728";  /* Display: ๐Ÿœจ */
}

HTML Decimal:

<p>HTML decimal: &#128808;</p>  <!-- Display: ๐Ÿœจ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F728;</p>  <!-- Display: ๐Ÿœจ -->

URL Encoding:

// ๐Ÿœจ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%9C%A8

Encodings

MD5:

c09721b24168356405eab0efde3a245e

SHA1:

bfc698f89fb3a722d3d8543576d846e0ff1d3a2b

Base64:

8J+cqA==