Unicode Finder

"⛚" U+26DA(DRIVE SLOW SIGN)

U+26DA
Block Name
Miscellaneous Symbols
Name
DRIVE SLOW SIGN

Programming

C
\u26DA
JavaScript
\u26DA
Java
\u26DA
Json
\u26DA
Python
\u26DA
Perl
\x{26DA}
PHP
\x{26DA}
Ruby
\u{26DA}
Rust
\u{26DA}
Go
\u26DA

Web

CSS
\0026DA
HtmlDecimal
⛚
HtmlHexadecimal
⛚
Url
%E2%9B%9A

Code

MD5
2e5a88a4284ea0a0f2708051bcd5d541
Sha1
eb16009c51c792aacc1b755e01a4ef9e0d1364be
Base64
4pua

Usage Examples

Programming Languages

C:

char c = '\u26DA';
printf("%c\n", c);  // Output: ⛚

JavaScript:

const char = '\u26DA';
console.log(char);  // Output: ⛚

Java:

char c = '\u26DA';
System.out.println(c);  // Output: ⛚

JSON:

{"text": "\u26DA"}  // Value: ⛚

Python:

char = '\u26DA'
print(char)  # Output: ⛚

Perl:

my $char = "\x{26DA}";
print $char;  # Output: ⛚

PHP:

$char = "\x{26DA}";
echo $char;  // Output: ⛚

Ruby:

char = "\u{26DA}"
puts char  # Output: ⛚

Rust:

let c = '\u{26DA}';
println!("{}", c);  // Output: ⛚

Go:

char := '\u26DA'
fmt.Printf("%c\n", char)  // Output: ⛚

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0026DA";  /* Display: ⛚ */
}

HTML Decimal:

<p>HTML decimal: &#9946;</p>  <!-- Display: ⛚ -->

HTML Hexadecimal:

<p>HTML hex: &#x26DA;</p>  <!-- Display: ⛚ -->

URL Encoding:

// ⛚ URL encoding
https://unicodefinder.com/search.php?query=%E2%9B%9A

Encodings

MD5:

2e5a88a4284ea0a0f2708051bcd5d541

SHA1:

eb16009c51c792aacc1b755e01a4ef9e0d1364be

Base64:

4pua