Unicode Finder

"郖" U+90D6(CJK UNIFIED IDEOGRAPH-90D6)

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

Programming

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

Web

CSS
\0090D6
HtmlDecimal
郖
HtmlHexadecimal
郖
Url
%E9%83%96

Code

MD5
031c9644ea7ea32382151ec3cf19588f
Sha1
15ed296977f8ab331134e80a82e2b4f7f1c49d1d
Base64
6YOW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u90D6';
console.log(char);  // Output: 郖

Java:

char c = '\u90D6';
System.out.println(c);  // Output: 郖

JSON:

{"text": "\u90D6"}  // Value: 郖

Python:

char = '\u90D6'
print(char)  # Output: 郖

Perl:

my $char = "\x{90D6}";
print $char;  # Output: 郖

PHP:

$char = "\x{90D6}";
echo $char;  // Output: 郖

Ruby:

char = "\u{90D6}"
puts char  # Output: 郖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37078;</p>  <!-- Display: 郖 -->

HTML Hexadecimal:

<p>HTML hex: &#x90D6;</p>  <!-- Display: 郖 -->

URL Encoding:

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

Encodings

MD5:

031c9644ea7ea32382151ec3cf19588f

SHA1:

15ed296977f8ab331134e80a82e2b4f7f1c49d1d

Base64:

6YOW