Unicode Finder

"๐Ÿ’ฟ" U+1F4BF(OPTICAL DISC)

๐Ÿ’ฟ
U+1F4BF
Block Name
Miscellaneous Symbols and Pictographs
Name
OPTICAL DISC

Programming

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

Web

CSS
\01F4BF
HtmlDecimal
💿
HtmlHexadecimal
💿
Url
%F0%9F%92%BF

Code

MD5
382368f5119e9785bc3f2ed3cbde243a
Sha1
69954bffc35a52c7ba98e2a676b5e2421a008208
Base64
8J+Svw==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F4BF"}  // Value: ๐Ÿ’ฟ

Python:

char = '\u1F4BF'
print(char)  # Output: ๐Ÿ’ฟ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F4BF}"
puts char  # Output: ๐Ÿ’ฟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

382368f5119e9785bc3f2ed3cbde243a

SHA1:

69954bffc35a52c7ba98e2a676b5e2421a008208

Base64:

8J+Svw==