Unicode Finder

"๐Ÿšœ" U+1F69C(TRACTOR)

๐Ÿšœ
U+1F69C
Block Name
Transport and Map Symbols
Name
TRACTOR

Programming

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

Web

CSS
\01F69C
HtmlDecimal
🚜
HtmlHexadecimal
🚜
Url
%F0%9F%9A%9C

Code

MD5
c2023f4968edcfbbccfa168d756dcd84
Sha1
bcf85949808419b38e5789369ac7df8e6c644e49
Base64
8J+anA==

Usage Examples

Programming Languages

C:

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

JavaScript:

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

Java:

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

JSON:

{"text": "\u1F69C"}  // Value: ๐Ÿšœ

Python:

char = '\u1F69C'
print(char)  # Output: ๐Ÿšœ

Perl:

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

PHP:

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

Ruby:

char = "\u{1F69C}"
puts char  # Output: ๐Ÿšœ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

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

HTML Hexadecimal:

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

URL Encoding:

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

Encodings

MD5:

c2023f4968edcfbbccfa168d756dcd84

SHA1:

bcf85949808419b38e5789369ac7df8e6c644e49

Base64:

8J+anA==