Unicode Finder

"๐Ÿšช" U+1F6AA(DOOR)

๐Ÿšช
U+1F6AA
Block Name
Transport and Map Symbols
Name
DOOR

Programming

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

Web

CSS
\01F6AA
HtmlDecimal
🚪
HtmlHexadecimal
🚪
Url
%F0%9F%9A%AA

Code

MD5
2138d5406a220dd5887b012f78df1aa9
Sha1
93702da3624fb10c88b887d7a329cbe5944f2a8f
Base64
8J+aqg==

Usage Examples

Programming Languages

C:

char c = '\u1F6AA';
printf("%c\n", c);  // Output: ๐Ÿšช

JavaScript:

const char = '\u1F6AA';
console.log(char);  // Output: ๐Ÿšช

Java:

char c = '\u1F6AA';
System.out.println(c);  // Output: ๐Ÿšช

JSON:

{"text": "\u1F6AA"}  // Value: ๐Ÿšช

Python:

char = '\u1F6AA'
print(char)  # Output: ๐Ÿšช

Perl:

my $char = "\x{1F6AA}";
print $char;  # Output: ๐Ÿšช

PHP:

$char = "\x{1F6AA}";
echo $char;  // Output: ๐Ÿšช

Ruby:

char = "\u{1F6AA}"
puts char  # Output: ๐Ÿšช

Rust:

let c = '\u{1F6AA}';
println!("{}", c);  // Output: ๐Ÿšช

Go:

char := '\u1F6AA'
fmt.Printf("%c\n", char)  // Output: ๐Ÿšช

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F6AA";  /* Display: ๐Ÿšช */
}

HTML Decimal:

<p>HTML decimal: &#128682;</p>  <!-- Display: ๐Ÿšช -->

HTML Hexadecimal:

<p>HTML hex: &#x1F6AA;</p>  <!-- Display: ๐Ÿšช -->

URL Encoding:

// ๐Ÿšช URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%9A%AA

Encodings

MD5:

2138d5406a220dd5887b012f78df1aa9

SHA1:

93702da3624fb10c88b887d7a329cbe5944f2a8f

Base64:

8J+aqg==