Unicode Finder

"郠" U+90E0(CJK UNIFIED IDEOGRAPH-90E0)

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

Programming

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

Web

CSS
\0090E0
HtmlDecimal
郠
HtmlHexadecimal
郠
Url
%E9%83%A0

Code

MD5
9f080fb897088f5953c89315a5bd86e2
Sha1
6ff06039500e37ec4e8660d464c29913754631fc
Base64
6YOg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90E0';
console.log(char);  // Output: 郠

Java:

char c = '\u90E0';
System.out.println(c);  // Output: 郠

JSON:

{"text": "\u90E0"}  // Value: 郠

Python:

char = '\u90E0'
print(char)  # Output: 郠

Perl:

my $char = "\x{90E0}";
print $char;  # Output: 郠

PHP:

$char = "\x{90E0}";
echo $char;  // Output: 郠

Ruby:

char = "\u{90E0}"
puts char  # Output: 郠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37088;</p>  <!-- Display: 郠 -->

HTML Hexadecimal:

<p>HTML hex: &#x90E0;</p>  <!-- Display: 郠 -->

URL Encoding:

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

Encodings

MD5:

9f080fb897088f5953c89315a5bd86e2

SHA1:

6ff06039500e37ec4e8660d464c29913754631fc

Base64:

6YOg