Unicode Finder

"๐Ÿšฌ" U+1F6AC(SMOKING SYMBOL)

๐Ÿšฌ
U+1F6AC
Block Name
Transport and Map Symbols
Name
SMOKING SYMBOL

Programming

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

Web

CSS
\01F6AC
HtmlDecimal
🚬
HtmlHexadecimal
🚬
Url
%F0%9F%9A%AC

Code

MD5
22b8da80dea564a5cf4db8c9725cf575
Sha1
98ddf0439c2c89b8b82a97dc5c68e574da425cab
Base64
8J+arA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F6AC"}  // Value: ๐Ÿšฌ

Python:

char = '\u1F6AC'
print(char)  # Output: ๐Ÿšฌ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F6AC}"
puts char  # Output: ๐Ÿšฌ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

22b8da80dea564a5cf4db8c9725cf575

SHA1:

98ddf0439c2c89b8b82a97dc5c68e574da425cab

Base64:

8J+arA==