Unicode Finder

"郒" U+90D2(CJK UNIFIED IDEOGRAPH-90D2)

U+90D2
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-90D2

Programming

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

Web

CSS
\0090D2
HtmlDecimal
郒
HtmlHexadecimal
郒
Url
%E9%83%92

Code

MD5
6cc76d3369cd3c8dad5ee0c0bb7472fc
Sha1
b02fa93930998757f2df330af517909ed3427efb
Base64
6YOS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u90D2';
console.log(char);  // Output: 郒

Java:

char c = '\u90D2';
System.out.println(c);  // Output: 郒

JSON:

{"text": "\u90D2"}  // Value: 郒

Python:

char = '\u90D2'
print(char)  # Output: 郒

Perl:

my $char = "\x{90D2}";
print $char;  # Output: 郒

PHP:

$char = "\x{90D2}";
echo $char;  // Output: 郒

Ruby:

char = "\u{90D2}"
puts char  # Output: 郒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37074;</p>  <!-- Display: 郒 -->

HTML Hexadecimal:

<p>HTML hex: &#x90D2;</p>  <!-- Display: 郒 -->

URL Encoding:

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

Encodings

MD5:

6cc76d3369cd3c8dad5ee0c0bb7472fc

SHA1:

b02fa93930998757f2df330af517909ed3427efb

Base64:

6YOS