Unicode Finder

"๐ŸŒ" U+1F74C(ALCHEMICAL SYMBOL FOR CALX)

๐ŸŒ
U+1F74C
Block Name
Alchemical Symbols
Name
ALCHEMICAL SYMBOL FOR CALX

Programming

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

Web

CSS
\01F74C
HtmlDecimal
🝌
HtmlHexadecimal
🝌
Url
%F0%9F%9D%8C

Code

MD5
7ec45db8c3682509dc8ae2497e6c85a4
Sha1
63de017982054b561f618e5e81173e99d64c9c57
Base64
8J+djA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F74C"}  // Value: ๐ŸŒ

Python:

char = '\u1F74C'
print(char)  # Output: ๐ŸŒ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F74C}"
puts char  # Output: ๐ŸŒ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

7ec45db8c3682509dc8ae2497e6c85a4

SHA1:

63de017982054b561f618e5e81173e99d64c9c57

Base64:

8J+djA==