Unicode Finder

"踎" U+8E0E(CJK UNIFIED IDEOGRAPH-8E0E)

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

Programming

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

Web

CSS
\008E0E
HtmlDecimal
踎
HtmlHexadecimal
踎
Url
%E8%B8%8E

Code

MD5
71a018e6f257e694ed0c17ccab0a0fc0
Sha1
b732726d92baf10e4f7da015c56d300f6a33eb48
Base64
6LiO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E0E';
console.log(char);  // Output: 踎

Java:

char c = '\u8E0E';
System.out.println(c);  // Output: 踎

JSON:

{"text": "\u8E0E"}  // Value: 踎

Python:

char = '\u8E0E'
print(char)  # Output: 踎

Perl:

my $char = "\x{8E0E}";
print $char;  # Output: 踎

PHP:

$char = "\x{8E0E}";
echo $char;  // Output: 踎

Ruby:

char = "\u{8E0E}"
puts char  # Output: 踎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36366;</p>  <!-- Display: 踎 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E0E;</p>  <!-- Display: 踎 -->

URL Encoding:

// 踎 URL encoding
https://unicodefinder.com/search.php?query=%E8%B8%8E

Encodings

MD5:

71a018e6f257e694ed0c17ccab0a0fc0

SHA1:

b732726d92baf10e4f7da015c56d300f6a33eb48

Base64:

6LiO