Unicode Finder

"郗" U+90D7(CJK UNIFIED IDEOGRAPH-90D7)

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

Programming

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

Web

CSS
\0090D7
HtmlDecimal
郗
HtmlHexadecimal
郗
Url
%E9%83%97

Code

MD5
1591b78f9da93e69b4ae4c898203976e
Sha1
247d79ca48f15dd67aeec57ee305a4fa829a9c6d
Base64
6YOX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90D7';
console.log(char);  // Output: 郗

Java:

char c = '\u90D7';
System.out.println(c);  // Output: 郗

JSON:

{"text": "\u90D7"}  // Value: 郗

Python:

char = '\u90D7'
print(char)  # Output: 郗

Perl:

my $char = "\x{90D7}";
print $char;  # Output: 郗

PHP:

$char = "\x{90D7}";
echo $char;  // Output: 郗

Ruby:

char = "\u{90D7}"
puts char  # Output: 郗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37079;</p>  <!-- Display: 郗 -->

HTML Hexadecimal:

<p>HTML hex: &#x90D7;</p>  <!-- Display: 郗 -->

URL Encoding:

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

Encodings

MD5:

1591b78f9da93e69b4ae4c898203976e

SHA1:

247d79ca48f15dd67aeec57ee305a4fa829a9c6d

Base64:

6YOX