Unicode Finder

"๐Ÿœฃ" U+1F723(ALCHEMICAL SYMBOL FOR CROCUS OF COPPER)

๐Ÿœฃ
U+1F723
Block Name
Alchemical Symbols
Name
ALCHEMICAL SYMBOL FOR CROCUS OF COPPER

Programming

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

Web

CSS
\01F723
HtmlDecimal
🜣
HtmlHexadecimal
🜣
Url
%F0%9F%9C%A3

Code

MD5
8bf1b325d99176b9fcfcb6f83bc2446d
Sha1
5544107b9fadf07c3e08f0277757799d166fd6ff
Base64
8J+cow==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F723"}  // Value: ๐Ÿœฃ

Python:

char = '\u1F723'
print(char)  # Output: ๐Ÿœฃ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F723}"
puts char  # Output: ๐Ÿœฃ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

8bf1b325d99176b9fcfcb6f83bc2446d

SHA1:

5544107b9fadf07c3e08f0277757799d166fd6ff

Base64:

8J+cow==