Unicode Finder

"郬" U+90EC(CJK UNIFIED IDEOGRAPH-90EC)

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

Programming

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

Web

CSS
\0090EC
HtmlDecimal
郬
HtmlHexadecimal
郬
Url
%E9%83%AC

Code

MD5
95e458b871d8212e4674548041ec7dfc
Sha1
b411ac84499ab066cb9fb1e59a2b9063f22e35ca
Base64
6YOs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u90EC';
console.log(char);  // Output: 郬

Java:

char c = '\u90EC';
System.out.println(c);  // Output: 郬

JSON:

{"text": "\u90EC"}  // Value: 郬

Python:

char = '\u90EC'
print(char)  # Output: 郬

Perl:

my $char = "\x{90EC}";
print $char;  # Output: 郬

PHP:

$char = "\x{90EC}";
echo $char;  // Output: 郬

Ruby:

char = "\u{90EC}"
puts char  # Output: 郬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37100;</p>  <!-- Display: 郬 -->

HTML Hexadecimal:

<p>HTML hex: &#x90EC;</p>  <!-- Display: 郬 -->

URL Encoding:

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

Encodings

MD5:

95e458b871d8212e4674548041ec7dfc

SHA1:

b411ac84499ab066cb9fb1e59a2b9063f22e35ca

Base64:

6YOs