Unicode Finder

"郜" U+90DC(CJK UNIFIED IDEOGRAPH-90DC)

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

Programming

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

Web

CSS
\0090DC
HtmlDecimal
郜
HtmlHexadecimal
郜
Url
%E9%83%9C

Code

MD5
85e45318bd68e70cf859134fdce3b65e
Sha1
2e0d53d50e016df42ed0ed8b6542873c6df1c0d0
Base64
6YOc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90DC';
console.log(char);  // Output: 郜

Java:

char c = '\u90DC';
System.out.println(c);  // Output: 郜

JSON:

{"text": "\u90DC"}  // Value: 郜

Python:

char = '\u90DC'
print(char)  # Output: 郜

Perl:

my $char = "\x{90DC}";
print $char;  # Output: 郜

PHP:

$char = "\x{90DC}";
echo $char;  // Output: 郜

Ruby:

char = "\u{90DC}"
puts char  # Output: 郜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37084;</p>  <!-- Display: 郜 -->

HTML Hexadecimal:

<p>HTML hex: &#x90DC;</p>  <!-- Display: 郜 -->

URL Encoding:

// 郜 URL encoding
https://unicodefinder.com/search.php?query=%E9%83%9C

Encodings

MD5:

85e45318bd68e70cf859134fdce3b65e

SHA1:

2e0d53d50e016df42ed0ed8b6542873c6df1c0d0

Base64:

6YOc