Unicode Finder

"郣" U+90E3(CJK UNIFIED IDEOGRAPH-90E3)

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

Programming

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

Web

CSS
\0090E3
HtmlDecimal
郣
HtmlHexadecimal
郣
Url
%E9%83%A3

Code

MD5
7a6219c2f6da18d11b48d0c37f1c6379
Sha1
60530c3f17136e15918a954d22c9f5cdb816f741
Base64
6YOj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90E3';
console.log(char);  // Output: 郣

Java:

char c = '\u90E3';
System.out.println(c);  // Output: 郣

JSON:

{"text": "\u90E3"}  // Value: 郣

Python:

char = '\u90E3'
print(char)  # Output: 郣

Perl:

my $char = "\x{90E3}";
print $char;  # Output: 郣

PHP:

$char = "\x{90E3}";
echo $char;  // Output: 郣

Ruby:

char = "\u{90E3}"
puts char  # Output: 郣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37091;</p>  <!-- Display: 郣 -->

HTML Hexadecimal:

<p>HTML hex: &#x90E3;</p>  <!-- Display: 郣 -->

URL Encoding:

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

Encodings

MD5:

7a6219c2f6da18d11b48d0c37f1c6379

SHA1:

60530c3f17136e15918a954d22c9f5cdb816f741

Base64:

6YOj