Unicode Finder

"郙" U+90D9(CJK UNIFIED IDEOGRAPH-90D9)

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

Programming

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

Web

CSS
\0090D9
HtmlDecimal
郙
HtmlHexadecimal
郙
Url
%E9%83%99

Code

MD5
899c79f3a1eed976bb4426388f06ac31
Sha1
73f8ee4e403dd42ee09c143bb1711d9d95254c8b
Base64
6YOZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90D9';
console.log(char);  // Output: 郙

Java:

char c = '\u90D9';
System.out.println(c);  // Output: 郙

JSON:

{"text": "\u90D9"}  // Value: 郙

Python:

char = '\u90D9'
print(char)  # Output: 郙

Perl:

my $char = "\x{90D9}";
print $char;  # Output: 郙

PHP:

$char = "\x{90D9}";
echo $char;  // Output: 郙

Ruby:

char = "\u{90D9}"
puts char  # Output: 郙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37081;</p>  <!-- Display: 郙 -->

HTML Hexadecimal:

<p>HTML hex: &#x90D9;</p>  <!-- Display: 郙 -->

URL Encoding:

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

Encodings

MD5:

899c79f3a1eed976bb4426388f06ac31

SHA1:

73f8ee4e403dd42ee09c143bb1711d9d95254c8b

Base64:

6YOZ