Unicode Finder

"镔" U+9554(CJK UNIFIED IDEOGRAPH-9554)

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

Programming

C
\u9554
JavaScript
\u9554
Java
\u9554
Json
\u9554
Python
\u9554
Perl
\x{9554}
PHP
\x{9554}
Ruby
\u{9554}
Rust
\u{9554}
Go
\u9554

Web

CSS
\009554
HtmlDecimal
镔
HtmlHexadecimal
镔
Url
%E9%95%94

Code

MD5
457f0ea7748073b20cbdf59d572d3138
Sha1
cf40944941dd2b8e669d394d1e19bbe8bf4287c7
Base64
6ZWU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9554';
console.log(char);  // Output: 镔

Java:

char c = '\u9554';
System.out.println(c);  // Output: 镔

JSON:

{"text": "\u9554"}  // Value: 镔

Python:

char = '\u9554'
print(char)  # Output: 镔

Perl:

my $char = "\x{9554}";
print $char;  # Output: 镔

PHP:

$char = "\x{9554}";
echo $char;  // Output: 镔

Ruby:

char = "\u{9554}"
puts char  # Output: 镔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009554";  /* Display: 镔 */
}

HTML Decimal:

<p>HTML decimal: &#38228;</p>  <!-- Display: 镔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9554;</p>  <!-- Display: 镔 -->

URL Encoding:

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

Encodings

MD5:

457f0ea7748073b20cbdf59d572d3138

SHA1:

cf40944941dd2b8e669d394d1e19bbe8bf4287c7

Base64:

6ZWU