Unicode Finder

"車" U+8ECA(CJK UNIFIED IDEOGRAPH-8ECA)

U+8ECA
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8ECA

Programming

C
\u8ECA
JavaScript
\u8ECA
Java
\u8ECA
Json
\u8ECA
Python
\u8ECA
Perl
\x{8ECA}
PHP
\x{8ECA}
Ruby
\u{8ECA}
Rust
\u{8ECA}
Go
\u8ECA

Web

CSS
\008ECA
HtmlDecimal
車
HtmlHexadecimal
車
Url
%E8%BB%8A

Code

MD5
ae9290a5afea9657fe51c64f7524ca0c
Sha1
47782cc9bccbabc6e783326522d26eb683f7b4e2
Base64
6LuK

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8ECA';
console.log(char);  // Output: 車

Java:

char c = '\u8ECA';
System.out.println(c);  // Output: 車

JSON:

{"text": "\u8ECA"}  // Value: 車

Python:

char = '\u8ECA'
print(char)  # Output: 車

Perl:

my $char = "\x{8ECA}";
print $char;  # Output: 車

PHP:

$char = "\x{8ECA}";
echo $char;  // Output: 車

Ruby:

char = "\u{8ECA}"
puts char  # Output: 車

Rust:

let c = '\u{8ECA}';
println!("{}", c);  // Output: 車

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008ECA";  /* Display: 車 */
}

HTML Decimal:

<p>HTML decimal: &#36554;</p>  <!-- Display: 車 -->

HTML Hexadecimal:

<p>HTML hex: &#x8ECA;</p>  <!-- Display: 車 -->

URL Encoding:

// 車 URL encoding
https://unicodefinder.com/search.php?query=%E8%BB%8A

Encodings

MD5:

ae9290a5afea9657fe51c64f7524ca0c

SHA1:

47782cc9bccbabc6e783326522d26eb683f7b4e2

Base64:

6LuK