Unicode Finder

"踞" U+8E1E(CJK UNIFIED IDEOGRAPH-8E1E)

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

Programming

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

Web

CSS
\008E1E
HtmlDecimal
踞
HtmlHexadecimal
踞
Url
%E8%B8%9E

Code

MD5
7419824e74ad5636469e30bdc1b1489b
Sha1
07af30e19bd1ed2675ff6738e2573c7df6a98aab
Base64
6Lie

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E1E';
console.log(char);  // Output: 踞

Java:

char c = '\u8E1E';
System.out.println(c);  // Output: 踞

JSON:

{"text": "\u8E1E"}  // Value: 踞

Python:

char = '\u8E1E'
print(char)  # Output: 踞

Perl:

my $char = "\x{8E1E}";
print $char;  # Output: 踞

PHP:

$char = "\x{8E1E}";
echo $char;  // Output: 踞

Ruby:

char = "\u{8E1E}"
puts char  # Output: 踞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36382;</p>  <!-- Display: 踞 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E1E;</p>  <!-- Display: 踞 -->

URL Encoding:

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

Encodings

MD5:

7419824e74ad5636469e30bdc1b1489b

SHA1:

07af30e19bd1ed2675ff6738e2573c7df6a98aab

Base64:

6Lie