Unicode Finder

"踚" U+8E1A(CJK UNIFIED IDEOGRAPH-8E1A)

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

Programming

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

Web

CSS
\008E1A
HtmlDecimal
踚
HtmlHexadecimal
踚
Url
%E8%B8%9A

Code

MD5
3108499a8e76e79a1cc82e71ce689f63
Sha1
37aaf5efaa85a5f9333d91bbc6ea7713a43a8731
Base64
6Lia

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E1A';
console.log(char);  // Output: 踚

Java:

char c = '\u8E1A';
System.out.println(c);  // Output: 踚

JSON:

{"text": "\u8E1A"}  // Value: 踚

Python:

char = '\u8E1A'
print(char)  # Output: 踚

Perl:

my $char = "\x{8E1A}";
print $char;  # Output: 踚

PHP:

$char = "\x{8E1A}";
echo $char;  // Output: 踚

Ruby:

char = "\u{8E1A}"
puts char  # Output: 踚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36378;</p>  <!-- Display: 踚 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E1A;</p>  <!-- Display: 踚 -->

URL Encoding:

// 踚 URL encoding
https://unicodefinder.com/search.php?query=%E8%B8%9A

Encodings

MD5:

3108499a8e76e79a1cc82e71ce689f63

SHA1:

37aaf5efaa85a5f9333d91bbc6ea7713a43a8731

Base64:

6Lia