Unicode Finder

"踬" U+8E2C(CJK UNIFIED IDEOGRAPH-8E2C)

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

Programming

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

Web

CSS
\008E2C
HtmlDecimal
踬
HtmlHexadecimal
踬
Url
%E8%B8%AC

Code

MD5
7baa9e0994afe3b2f366be690a5f4345
Sha1
1eb33e0b8e284f08a904d330052295ea9f2eae29
Base64
6Lis

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E2C';
console.log(char);  // Output: 踬

Java:

char c = '\u8E2C';
System.out.println(c);  // Output: 踬

JSON:

{"text": "\u8E2C"}  // Value: 踬

Python:

char = '\u8E2C'
print(char)  # Output: 踬

Perl:

my $char = "\x{8E2C}";
print $char;  # Output: 踬

PHP:

$char = "\x{8E2C}";
echo $char;  // Output: 踬

Ruby:

char = "\u{8E2C}"
puts char  # Output: 踬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36396;</p>  <!-- Display: 踬 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E2C;</p>  <!-- Display: 踬 -->

URL Encoding:

// 踬 URL encoding
https://unicodefinder.com/search.php?query=%E8%B8%AC

Encodings

MD5:

7baa9e0994afe3b2f366be690a5f4345

SHA1:

1eb33e0b8e284f08a904d330052295ea9f2eae29

Base64:

6Lis