Unicode Finder

"๐Ÿœ " U+1F720(ALCHEMICAL SYMBOL FOR COPPER ORE)

๐Ÿœ 
U+1F720
Block Name
Alchemical Symbols
Name
ALCHEMICAL SYMBOL FOR COPPER ORE

Programming

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

Web

CSS
\01F720
HtmlDecimal
🜠
HtmlHexadecimal
🜠
Url
%F0%9F%9C%A0

Code

MD5
ce6f8592985ee30c0bc22972b2e5e8be
Sha1
a528ae04fcdbcfdf28f5a2a75a3971027c1db661
Base64
8J+coA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F720"}  // Value: ๐Ÿœ 

Python:

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

Perl:

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

PHP:

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

Ruby:

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

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

ce6f8592985ee30c0bc22972b2e5e8be

SHA1:

a528ae04fcdbcfdf28f5a2a75a3971027c1db661

Base64:

8J+coA==