Unicode Finder

"๐Ÿ–ซ" U+1F5AB(WHITE HARD SHELL FLOPPY DISK)

๐Ÿ–ซ
U+1F5AB
Block Name
Miscellaneous Symbols and Pictographs
Name
WHITE HARD SHELL FLOPPY DISK

Programming

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

Web

CSS
\01F5AB
HtmlDecimal
🖫
HtmlHexadecimal
🖫
Url
%F0%9F%96%AB

Code

MD5
b2d7565de4dc508e645f8a5aecfe1690
Sha1
670bf8ff5f4f9529f18250d6a7aafbc7eb4260a8
Base64
8J+Wqw==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F5AB"}  // Value: ๐Ÿ–ซ

Python:

char = '\u1F5AB'
print(char)  # Output: ๐Ÿ–ซ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F5AB}"
puts char  # Output: ๐Ÿ–ซ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

b2d7565de4dc508e645f8a5aecfe1690

SHA1:

670bf8ff5f4f9529f18250d6a7aafbc7eb4260a8

Base64:

8J+Wqw==