Unicode Finder

"๐Ÿœ" U+1F70D(ALCHEMICAL SYMBOL FOR SULFUR)

๐Ÿœ
U+1F70D
Block Name
Alchemical Symbols
Name
ALCHEMICAL SYMBOL FOR SULFUR

Programming

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

Web

CSS
\01F70D
HtmlDecimal
🜍
HtmlHexadecimal
🜍
Url
%F0%9F%9C%8D

Code

MD5
9a7b4ba579a9e9c4f707c644e258cc09
Sha1
5d8f0094c3c789ee5c4e9251e637181ccb093265
Base64
8J+cjQ==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F70D"}  // Value: ๐Ÿœ

Python:

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

Perl:

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

PHP:

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

Ruby:

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

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

9a7b4ba579a9e9c4f707c644e258cc09

SHA1:

5d8f0094c3c789ee5c4e9251e637181ccb093265

Base64:

8J+cjQ==