Unicode Finder

"πŸ–»" U+1F5BB(DOCUMENT WITH PICTURE)

πŸ–»
U+1F5BB
Block Name
Miscellaneous Symbols and Pictographs
Name
DOCUMENT WITH PICTURE

Programming

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

Web

CSS
\01F5BB
HtmlDecimal
🖻
HtmlHexadecimal
🖻
Url
%F0%9F%96%BB

Code

MD5
cc8535387fd890193fa039ed23a737ec
Sha1
2352e2a4ae5178af1093cb1271d6ff53ee56121a
Base64
8J+Wuw==

Usage Examples

Programming Languages

C:

char c = '\u1F5BB';
printf("%c\n", c);  // Output: πŸ–»

JavaScript:

const char = '\u1F5BB';
console.log(char);  // Output: πŸ–»

Java:

char c = '\u1F5BB';
System.out.println(c);  // Output: πŸ–»

JSON:

{"text": "\u1F5BB"}  // Value: πŸ–»

Python:

char = '\u1F5BB'
print(char)  # Output: πŸ–»

Perl:

my $char = "\x{1F5BB}";
print $char;  # Output: πŸ–»

PHP:

$char = "\x{1F5BB}";
echo $char;  // Output: πŸ–»

Ruby:

char = "\u{1F5BB}"
puts char  # Output: πŸ–»

Rust:

let c = '\u{1F5BB}';
println!("{}", c);  // Output: πŸ–»

Go:

char := '\u1F5BB'
fmt.Printf("%c\n", char)  // Output: πŸ–»

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F5BB";  /* Display: πŸ–» */
}

HTML Decimal:

<p>HTML decimal: &#128443;</p>  <!-- Display: πŸ–» -->

HTML Hexadecimal:

<p>HTML hex: &#x1F5BB;</p>  <!-- Display: πŸ–» -->

URL Encoding:

// πŸ–» URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%96%BB

Encodings

MD5:

cc8535387fd890193fa039ed23a737ec

SHA1:

2352e2a4ae5178af1093cb1271d6ff53ee56121a

Base64:

8J+Wuw==