Unicode Finder

"๐Ÿ”ฎ" U+1F52E(CRYSTAL BALL)

๐Ÿ”ฎ
U+1F52E
Block Name
Miscellaneous Symbols and Pictographs
Name
CRYSTAL BALL

Programming

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

Web

CSS
\01F52E
HtmlDecimal
🔮
HtmlHexadecimal
🔮
Url
%F0%9F%94%AE

Code

MD5
f490772edd32c5bee12c3d66b5e4262e
Sha1
c0a990f34ea6e4c5c8ca00b6f462af9f422e9859
Base64
8J+Urg==

Usage Examples

Programming Languages

C:

char c = '\u1F52E';
printf("%c\n", c);  // Output: ๐Ÿ”ฎ

JavaScript:

const char = '\u1F52E';
console.log(char);  // Output: ๐Ÿ”ฎ

Java:

char c = '\u1F52E';
System.out.println(c);  // Output: ๐Ÿ”ฎ

JSON:

{"text": "\u1F52E"}  // Value: ๐Ÿ”ฎ

Python:

char = '\u1F52E'
print(char)  # Output: ๐Ÿ”ฎ

Perl:

my $char = "\x{1F52E}";
print $char;  # Output: ๐Ÿ”ฎ

PHP:

$char = "\x{1F52E}";
echo $char;  // Output: ๐Ÿ”ฎ

Ruby:

char = "\u{1F52E}"
puts char  # Output: ๐Ÿ”ฎ

Rust:

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

Go:

char := '\u1F52E'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ”ฎ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F52E";  /* Display: ๐Ÿ”ฎ */
}

HTML Decimal:

<p>HTML decimal: &#128302;</p>  <!-- Display: ๐Ÿ”ฎ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F52E;</p>  <!-- Display: ๐Ÿ”ฎ -->

URL Encoding:

// ๐Ÿ”ฎ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%94%AE

Encodings

MD5:

f490772edd32c5bee12c3d66b5e4262e

SHA1:

c0a990f34ea6e4c5c8ca00b6f462af9f422e9859

Base64:

8J+Urg==