Unicode Finder

"郄" U+90C4(CJK UNIFIED IDEOGRAPH-90C4)

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

Programming

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

Web

CSS
\0090C4
HtmlDecimal
郄
HtmlHexadecimal
郄
Url
%E9%83%84

Code

MD5
f8d3d7327d4a7bf37a52fae10144bd96
Sha1
20e2797f83cda7cf10016032da8afdc164616860
Base64
6YOE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u90C4';
console.log(char);  // Output: 郄

Java:

char c = '\u90C4';
System.out.println(c);  // Output: 郄

JSON:

{"text": "\u90C4"}  // Value: 郄

Python:

char = '\u90C4'
print(char)  # Output: 郄

Perl:

my $char = "\x{90C4}";
print $char;  # Output: 郄

PHP:

$char = "\x{90C4}";
echo $char;  // Output: 郄

Ruby:

char = "\u{90C4}"
puts char  # Output: 郄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37060;</p>  <!-- Display: 郄 -->

HTML Hexadecimal:

<p>HTML hex: &#x90C4;</p>  <!-- Display: 郄 -->

URL Encoding:

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

Encodings

MD5:

f8d3d7327d4a7bf37a52fae10144bd96

SHA1:

20e2797f83cda7cf10016032da8afdc164616860

Base64:

6YOE