Unicode Finder

"๐Ÿšซ" U+1F6AB(NO ENTRY SIGN)

๐Ÿšซ
U+1F6AB
Block Name
Transport and Map Symbols
Name
NO ENTRY SIGN

Programming

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

Web

CSS
\01F6AB
HtmlDecimal
🚫
HtmlHexadecimal
🚫
Url
%F0%9F%9A%AB

Code

MD5
0fa8c098b402ec4f25918898b48d4724
Sha1
1fee3b4a52f8bbba1ae107f01184ad871cfe4a4b
Base64
8J+aqw==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F6AB"}  // Value: ๐Ÿšซ

Python:

char = '\u1F6AB'
print(char)  # Output: ๐Ÿšซ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F6AB}"
puts char  # Output: ๐Ÿšซ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

0fa8c098b402ec4f25918898b48d4724

SHA1:

1fee3b4a52f8bbba1ae107f01184ad871cfe4a4b

Base64:

8J+aqw==