Unicode Finder

"๐Ÿšง" U+1F6A7(CONSTRUCTION SIGN)

๐Ÿšง
U+1F6A7
Block Name
Transport and Map Symbols
Name
CONSTRUCTION SIGN

Programming

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

Web

CSS
\01F6A7
HtmlDecimal
🚧
HtmlHexadecimal
🚧
Url
%F0%9F%9A%A7

Code

MD5
6686cfab91803d145de3dec18f397014
Sha1
ecf831f8eaa8b4fd01c55f84d0b09c22157bcf01
Base64
8J+apw==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F6A7"}  // Value: ๐Ÿšง

Python:

char = '\u1F6A7'
print(char)  # Output: ๐Ÿšง

Perl:

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

PHP:

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

Ruby:

char = "\u{1F6A7}"
puts char  # Output: ๐Ÿšง

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

6686cfab91803d145de3dec18f397014

SHA1:

ecf831f8eaa8b4fd01c55f84d0b09c22157bcf01

Base64:

8J+apw==