Unicode Finder

"郈" U+90C8(CJK UNIFIED IDEOGRAPH-90C8)

U+90C8
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-90C8

Programming

C
\u90C8
JavaScript
\u90C8
Java
\u90C8
Json
\u90C8
Python
\u90C8
Perl
\x{90C8}
PHP
\x{90C8}
Ruby
\u{90C8}
Rust
\u{90C8}
Go
\u90C8

Web

CSS
\0090C8
HtmlDecimal
郈
HtmlHexadecimal
郈
Url
%E9%83%88

Code

MD5
431b2e126a205e1986375d3ed772db95
Sha1
5f0ecb3614f655ef65c552533841a9f63c9e415a
Base64
6YOI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90C8';
console.log(char);  // Output: 郈

Java:

char c = '\u90C8';
System.out.println(c);  // Output: 郈

JSON:

{"text": "\u90C8"}  // Value: 郈

Python:

char = '\u90C8'
print(char)  # Output: 郈

Perl:

my $char = "\x{90C8}";
print $char;  # Output: 郈

PHP:

$char = "\x{90C8}";
echo $char;  // Output: 郈

Ruby:

char = "\u{90C8}"
puts char  # Output: 郈

Rust:

let c = '\u{90C8}';
println!("{}", c);  // Output: 郈

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0090C8";  /* Display: 郈 */
}

HTML Decimal:

<p>HTML decimal: &#37064;</p>  <!-- Display: 郈 -->

HTML Hexadecimal:

<p>HTML hex: &#x90C8;</p>  <!-- Display: 郈 -->

URL Encoding:

// 郈 URL encoding
https://unicodefinder.com/search.php?query=%E9%83%88

Encodings

MD5:

431b2e126a205e1986375d3ed772db95

SHA1:

5f0ecb3614f655ef65c552533841a9f63c9e415a

Base64:

6YOI