Unicode Finder

"镃" U+9543(CJK UNIFIED IDEOGRAPH-9543)

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

Programming

C
\u9543
JavaScript
\u9543
Java
\u9543
Json
\u9543
Python
\u9543
Perl
\x{9543}
PHP
\x{9543}
Ruby
\u{9543}
Rust
\u{9543}
Go
\u9543

Web

CSS
\009543
HtmlDecimal
镃
HtmlHexadecimal
镃
Url
%E9%95%83

Code

MD5
331f04a24f0dedc0b1bc57e5636aea4e
Sha1
ca1180924b273de02de341410bc293de31d985fb
Base64
6ZWD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9543';
console.log(char);  // Output: 镃

Java:

char c = '\u9543';
System.out.println(c);  // Output: 镃

JSON:

{"text": "\u9543"}  // Value: 镃

Python:

char = '\u9543'
print(char)  # Output: 镃

Perl:

my $char = "\x{9543}";
print $char;  # Output: 镃

PHP:

$char = "\x{9543}";
echo $char;  // Output: 镃

Ruby:

char = "\u{9543}"
puts char  # Output: 镃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009543";  /* Display: 镃 */
}

HTML Decimal:

<p>HTML decimal: &#38211;</p>  <!-- Display: 镃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9543;</p>  <!-- Display: 镃 -->

URL Encoding:

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

Encodings

MD5:

331f04a24f0dedc0b1bc57e5636aea4e

SHA1:

ca1180924b273de02de341410bc293de31d985fb

Base64:

6ZWD