Unicode Finder

"遃" U+9043(CJK UNIFIED IDEOGRAPH-9043)

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

Programming

C
\u9043
JavaScript
\u9043
Java
\u9043
Json
\u9043
Python
\u9043
Perl
\x{9043}
PHP
\x{9043}
Ruby
\u{9043}
Rust
\u{9043}
Go
\u9043

Web

CSS
\009043
HtmlDecimal
遃
HtmlHexadecimal
遃
Url
%E9%81%83

Code

MD5
0a0b8b6097d3f971247855c860b16858
Sha1
938641086aa14d03a6c95ca49e37473ee4291063
Base64
6YGD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9043';
console.log(char);  // Output: 遃

Java:

char c = '\u9043';
System.out.println(c);  // Output: 遃

JSON:

{"text": "\u9043"}  // Value: 遃

Python:

char = '\u9043'
print(char)  # Output: 遃

Perl:

my $char = "\x{9043}";
print $char;  # Output: 遃

PHP:

$char = "\x{9043}";
echo $char;  // Output: 遃

Ruby:

char = "\u{9043}"
puts char  # Output: 遃

Rust:

let c = '\u{9043}';
println!("{}", c);  // Output: 遃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009043";  /* Display: 遃 */
}

HTML Decimal:

<p>HTML decimal: &#36931;</p>  <!-- Display: 遃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9043;</p>  <!-- Display: 遃 -->

URL Encoding:

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

Encodings

MD5:

0a0b8b6097d3f971247855c860b16858

SHA1:

938641086aa14d03a6c95ca49e37473ee4291063

Base64:

6YGD