Unicode Finder

"๐Ÿœธ" U+1F738(ALCHEMICAL SYMBOL FOR MARCASITE)

๐Ÿœธ
U+1F738
Nome do Bloco
Alchemical Symbols
Nome
ALCHEMICAL SYMBOL FOR MARCASITE

Programming

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

Web

CSS
\01F738
HtmlDecimal
🜸
HtmlHexadecimal
🜸
Url
%F0%9F%9C%B8

Code

MD5
31068af12cd07ef97019206d566d23fd
Sha1
fece2eb6f0741bac68c86312385fda8121e3a00c
Base64
8J+cuA==

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F738"}  // Value: ๐Ÿœธ

Python:

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

Perl:

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

PHP:

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

Ruby:

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

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

31068af12cd07ef97019206d566d23fd

SHA1:

fece2eb6f0741bac68c86312385fda8121e3a00c

Base64:

8J+cuA==