Unicode Finder

"๐Ÿ›ฒ" U+1F6F2(DIESEL LOCOMOTIVE)

๐Ÿ›ฒ
U+1F6F2
Block Name
Transport and Map Symbols
Name
DIESEL LOCOMOTIVE

Programming

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

Web

CSS
\01F6F2
HtmlDecimal
🛲
HtmlHexadecimal
🛲
Url
%F0%9F%9B%B2

Code

MD5
e5f35c56e7230eb4a7c859dcaae94c61
Sha1
4982b335ce99e81b55b5a093529af2a20240e1b0
Base64
8J+bsg==

Usage Examples

Programming Languages

C:

char c = '\u1F6F2';
printf("%c\n", c);  // Output: ๐Ÿ›ฒ

JavaScript:

const char = '\u1F6F2';
console.log(char);  // Output: ๐Ÿ›ฒ

Java:

char c = '\u1F6F2';
System.out.println(c);  // Output: ๐Ÿ›ฒ

JSON:

{"text": "\u1F6F2"}  // Value: ๐Ÿ›ฒ

Python:

char = '\u1F6F2'
print(char)  # Output: ๐Ÿ›ฒ

Perl:

my $char = "\x{1F6F2}";
print $char;  # Output: ๐Ÿ›ฒ

PHP:

$char = "\x{1F6F2}";
echo $char;  // Output: ๐Ÿ›ฒ

Ruby:

char = "\u{1F6F2}"
puts char  # Output: ๐Ÿ›ฒ

Rust:

let c = '\u{1F6F2}';
println!("{}", c);  // Output: ๐Ÿ›ฒ

Go:

char := '\u1F6F2'
fmt.Printf("%c\n", char)  // Output: ๐Ÿ›ฒ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\01F6F2";  /* Display: ๐Ÿ›ฒ */
}

HTML Decimal:

<p>HTML decimal: &#128754;</p>  <!-- Display: ๐Ÿ›ฒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F6F2;</p>  <!-- Display: ๐Ÿ›ฒ -->

URL Encoding:

// ๐Ÿ›ฒ URL encoding
https://unicodefinder.com/search.php?query=%F0%9F%9B%B2

Encodings

MD5:

e5f35c56e7230eb4a7c859dcaae94c61

SHA1:

4982b335ce99e81b55b5a093529af2a20240e1b0

Base64:

8J+bsg==