Unicode Finder

"๐Ÿ’ซ" U+1F4AB(DIZZY SYMBOL)

๐Ÿ’ซ
U+1F4AB
Block Name
Miscellaneous Symbols and Pictographs
Name
DIZZY SYMBOL

Programming

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

Web

CSS
\01F4AB
HtmlDecimal
💫
HtmlHexadecimal
💫
Url
%F0%9F%92%AB

Code

MD5
cc6c271f480d11234186ae5da3e3efce
Sha1
4ece1c94c928c8178146b74e2e8f654759830277
Base64
8J+Sqw==

Usage Examples

Programming Languages

C:

char c = '\u1F4AB';
printf("%c\n", c);  // Output: ๐Ÿ’ซ

JavaScript:

const char = '\u1F4AB';
console.log(char);  // Output: ๐Ÿ’ซ

Java:

char c = '\u1F4AB';
System.out.println(c);  // Output: ๐Ÿ’ซ

JSON:

{"text": "\u1F4AB"}  // Value: ๐Ÿ’ซ

Python:

char = '\u1F4AB'
print(char)  # Output: ๐Ÿ’ซ

Perl:

my $char = "\x{1F4AB}";
print $char;  # Output: ๐Ÿ’ซ

PHP:

$char = "\x{1F4AB}";
echo $char;  // Output: ๐Ÿ’ซ

Ruby:

char = "\u{1F4AB}"
puts char  # Output: ๐Ÿ’ซ

Rust:

let c = '\u{1F4AB}';
println!("{}", c);  // Output: ๐Ÿ’ซ

Go:

char := '\u1F4AB'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ’ซ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F4AB";  /* Display: ๐Ÿ’ซ */
}

HTML Decimal:

<p>HTML decimal: &#128171;</p>  <!-- Display: ๐Ÿ’ซ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F4AB;</p>  <!-- Display: ๐Ÿ’ซ -->

URL Encoding:

// ๐Ÿ’ซ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%92%AB

Encodings

MD5:

cc6c271f480d11234186ae5da3e3efce

SHA1:

4ece1c94c928c8178146b74e2e8f654759830277

Base64:

8J+Sqw==