Unicode Finder

"๐Ÿœ" U+1F71D(ALCHEMICAL SYMBOL FOR IRON ORE-2)

๐Ÿœ
U+1F71D
Block Name
Alchemical Symbols
Name
ALCHEMICAL SYMBOL FOR IRON ORE-2

Programming

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

Web

CSS
\01F71D
HtmlDecimal
🜝
HtmlHexadecimal
🜝
Url
%F0%9F%9C%9D

Code

MD5
ee7206bf46f4a861583339e804fe91d6
Sha1
230d903a18ead0d324c5cc51a138a03cb355ce67
Base64
8J+cnQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F71D"}  // Value: ๐Ÿœ

Python:

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

Perl:

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

PHP:

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

Ruby:

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

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

ee7206bf46f4a861583339e804fe91d6

SHA1:

230d903a18ead0d324c5cc51a138a03cb355ce67

Base64:

8J+cnQ==