Unicode Finder

"๐Ÿšป" U+1F6BB(RESTROOM)

๐Ÿšป
U+1F6BB
ืฉื ื‘ืœื•ืง
Transport and Map Symbols
ืฉื
RESTROOM

Programming

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

Web

CSS
\01F6BB
HtmlDecimal
🚻
HtmlHexadecimal
🚻
Url
%F0%9F%9A%BB

Code

MD5
abf225a456e7fdbb4992cd066eb4aee7
Sha1
0f69579c31c906cc3027ad12e6f7a74a7a419a1f
Base64
8J+auw==

ื“ื•ื’ืžืื•ืช ืฉื™ืžื•ืฉ

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F6BB"}  // Value: ๐Ÿšป

Python:

char = '\u1F6BB'
print(char)  # Output: ๐Ÿšป

Perl:

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

PHP:

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

Ruby:

char = "\u{1F6BB}"
puts char  # Output: ๐Ÿšป

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

abf225a456e7fdbb4992cd066eb4aee7

SHA1:

0f69579c31c906cc3027ad12e6f7a74a7a419a1f

Base64:

8J+auw==