Unicode Finder

"郏" U+90CF(CJK UNIFIED IDEOGRAPH-90CF)

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

Programming

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

Web

CSS
\0090CF
HtmlDecimal
郏
HtmlHexadecimal
郏
Url
%E9%83%8F

Code

MD5
4389f5fecf7da60990d74e217e201f70
Sha1
e24ec18b367aeb1d9d9c0a8cdabdad4f8daaae2c
Base64
6YOP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90CF';
console.log(char);  // Output: 郏

Java:

char c = '\u90CF';
System.out.println(c);  // Output: 郏

JSON:

{"text": "\u90CF"}  // Value: 郏

Python:

char = '\u90CF'
print(char)  # Output: 郏

Perl:

my $char = "\x{90CF}";
print $char;  # Output: 郏

PHP:

$char = "\x{90CF}";
echo $char;  // Output: 郏

Ruby:

char = "\u{90CF}"
puts char  # Output: 郏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37071;</p>  <!-- Display: 郏 -->

HTML Hexadecimal:

<p>HTML hex: &#x90CF;</p>  <!-- Display: 郏 -->

URL Encoding:

// 郏 URL encoding
https://unicodefinder.com/search.php?query=%E9%83%8F

Encodings

MD5:

4389f5fecf7da60990d74e217e201f70

SHA1:

e24ec18b367aeb1d9d9c0a8cdabdad4f8daaae2c

Base64:

6YOP