Unicode Finder

"๐ŸŽš" U+1F39A(LEVEL SLIDER)

๐ŸŽš
U+1F39A
ใƒ–ใƒญใƒƒใ‚ฏๅ
Miscellaneous Symbols and Pictographs
ๅๅ‰
LEVEL SLIDER

Programming

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

Web

CSS
\01F39A
HtmlDecimal
🎚
HtmlHexadecimal
🎚
Url
%F0%9F%8E%9A

Code

MD5
c01e408abd27e82f63f3fac398859344
Sha1
d812d271965d809231085ebea446cd22e9e980b6
Base64
8J+Omg==

ไฝฟ็”จไพ‹

Programming Languages

C:

char c = '\u1F39A';
printf("%c\n", c);  // Output: ๐ŸŽš

JavaScript:

const char = '\u1F39A';
console.log(char);  // Output: ๐ŸŽš

Java:

char c = '\u1F39A';
System.out.println(c);  // Output: ๐ŸŽš

JSON:

{"text": "\u1F39A"}  // Value: ๐ŸŽš

Python:

char = '\u1F39A'
print(char)  # Output: ๐ŸŽš

Perl:

my $char = "\x{1F39A}";
print $char;  # Output: ๐ŸŽš

PHP:

$char = "\x{1F39A}";
echo $char;  // Output: ๐ŸŽš

Ruby:

char = "\u{1F39A}"
puts char  # Output: ๐ŸŽš

Rust:

let c = '\u{1F39A}';
println!("{}", c);  // Output: ๐ŸŽš

Go:

char := '\u1F39A'
fmt.Printf("%c\n", char)  // Output: ๐ŸŽš

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F39A";  /* Display: ๐ŸŽš */
}

HTML Decimal:

<p>HTML decimal: &#127898;</p>  <!-- Display: ๐ŸŽš -->

HTML Hexadecimal:

<p>HTML hex: &#x1F39A;</p>  <!-- Display: ๐ŸŽš -->

URL Encoding:

// ๐ŸŽš URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%8E%9A

Encodings

MD5:

c01e408abd27e82f63f3fac398859344

SHA1:

d812d271965d809231085ebea446cd22e9e980b6

Base64:

8J+Omg==