Unicode Finder

"郂" U+90C2(CJK UNIFIED IDEOGRAPH-90C2)

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

Programming

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

Web

CSS
\0090C2
HtmlDecimal
郂
HtmlHexadecimal
郂
Url
%E9%83%82

Code

MD5
2253b19f23dd839763bcbedac0486b65
Sha1
e34f7accab68755a01def9941451f38b88dc58ed
Base64
6YOC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90C2';
console.log(char);  // Output: 郂

Java:

char c = '\u90C2';
System.out.println(c);  // Output: 郂

JSON:

{"text": "\u90C2"}  // Value: 郂

Python:

char = '\u90C2'
print(char)  # Output: 郂

Perl:

my $char = "\x{90C2}";
print $char;  # Output: 郂

PHP:

$char = "\x{90C2}";
echo $char;  // Output: 郂

Ruby:

char = "\u{90C2}"
puts char  # Output: 郂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37058;</p>  <!-- Display: 郂 -->

HTML Hexadecimal:

<p>HTML hex: &#x90C2;</p>  <!-- Display: 郂 -->

URL Encoding:

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

Encodings

MD5:

2253b19f23dd839763bcbedac0486b65

SHA1:

e34f7accab68755a01def9941451f38b88dc58ed

Base64:

6YOC