Unicode Finder

"郃" U+90C3(CJK UNIFIED IDEOGRAPH-90C3)

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

Programming

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

Web

CSS
\0090C3
HtmlDecimal
郃
HtmlHexadecimal
郃
Url
%E9%83%83

Code

MD5
63356964901307f7fd154067e7eb7387
Sha1
9db7addc9e2bb31ae916af018bc3d8d0f0ba9f64
Base64
6YOD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u90C3';
console.log(char);  // Output: 郃

Java:

char c = '\u90C3';
System.out.println(c);  // Output: 郃

JSON:

{"text": "\u90C3"}  // Value: 郃

Python:

char = '\u90C3'
print(char)  # Output: 郃

Perl:

my $char = "\x{90C3}";
print $char;  # Output: 郃

PHP:

$char = "\x{90C3}";
echo $char;  // Output: 郃

Ruby:

char = "\u{90C3}"
puts char  # Output: 郃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37059;</p>  <!-- Display: 郃 -->

HTML Hexadecimal:

<p>HTML hex: &#x90C3;</p>  <!-- Display: 郃 -->

URL Encoding:

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

Encodings

MD5:

63356964901307f7fd154067e7eb7387

SHA1:

9db7addc9e2bb31ae916af018bc3d8d0f0ba9f64

Base64:

6YOD