Unicode Finder

"郧" U+90E7(CJK UNIFIED IDEOGRAPH-90E7)

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

Programming

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

Web

CSS
\0090E7
HtmlDecimal
郧
HtmlHexadecimal
郧
Url
%E9%83%A7

Code

MD5
211248cdf192bbe01668c7301682b137
Sha1
2ef6132826d93567509684721f0593e0e6f298cc
Base64
6YOn

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u90E7';
console.log(char);  // Output: 郧

Java:

char c = '\u90E7';
System.out.println(c);  // Output: 郧

JSON:

{"text": "\u90E7"}  // Value: 郧

Python:

char = '\u90E7'
print(char)  # Output: 郧

Perl:

my $char = "\x{90E7}";
print $char;  # Output: 郧

PHP:

$char = "\x{90E7}";
echo $char;  // Output: 郧

Ruby:

char = "\u{90E7}"
puts char  # Output: 郧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37095;</p>  <!-- Display: 郧 -->

HTML Hexadecimal:

<p>HTML hex: &#x90E7;</p>  <!-- Display: 郧 -->

URL Encoding:

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

Encodings

MD5:

211248cdf192bbe01668c7301682b137

SHA1:

2ef6132826d93567509684721f0593e0e6f298cc

Base64:

6YOn