Unicode Finder

"郎" U+90CE(CJK UNIFIED IDEOGRAPH-90CE)

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

Programming

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

Web

CSS
\0090CE
HtmlDecimal
郎
HtmlHexadecimal
郎
Url
%E9%83%8E

Code

MD5
008f964ad9d9db8d269db72c5d6e1f3d
Sha1
61e1567af84a826b185d2a6b2426c15942856d17
Base64
6YOO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90CE';
console.log(char);  // Output: 郎

Java:

char c = '\u90CE';
System.out.println(c);  // Output: 郎

JSON:

{"text": "\u90CE"}  // Value: 郎

Python:

char = '\u90CE'
print(char)  # Output: 郎

Perl:

my $char = "\x{90CE}";
print $char;  # Output: 郎

PHP:

$char = "\x{90CE}";
echo $char;  // Output: 郎

Ruby:

char = "\u{90CE}"
puts char  # Output: 郎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37070;</p>  <!-- Display: 郎 -->

HTML Hexadecimal:

<p>HTML hex: &#x90CE;</p>  <!-- Display: 郎 -->

URL Encoding:

// 郎 URL encoding
https://unicodefinder.com/search.php?query=%E9%83%8E

Encodings

MD5:

008f964ad9d9db8d269db72c5d6e1f3d

SHA1:

61e1567af84a826b185d2a6b2426c15942856d17

Base64:

6YOO