Unicode Finder

"๐ŸŽข" U+1F3A2(ROLLER COASTER)

๐ŸŽข
U+1F3A2
ใƒ–ใƒญใƒƒใ‚ฏๅ
Miscellaneous Symbols and Pictographs
ๅๅ‰
ROLLER COASTER

Programming

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

Web

CSS
\01F3A2
HtmlDecimal
🎢
HtmlHexadecimal
🎢
Url
%F0%9F%8E%A2

Code

MD5
94501381ecf632cf8154279279afa855
Sha1
4db0998a725993a31df632de977198c07c383dea
Base64
8J+Oog==

ไฝฟ็”จไพ‹

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F3A2"}  // Value: ๐ŸŽข

Python:

char = '\u1F3A2'
print(char)  # Output: ๐ŸŽข

Perl:

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

PHP:

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

Ruby:

char = "\u{1F3A2}"
puts char  # Output: ๐ŸŽข

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

94501381ecf632cf8154279279afa855

SHA1:

4db0998a725993a31df632de977198c07c383dea

Base64:

8J+Oog==