Unicode Finder

"镄" U+9544(CJK UNIFIED IDEOGRAPH-9544)

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

Programming

C
\u9544
JavaScript
\u9544
Java
\u9544
Json
\u9544
Python
\u9544
Perl
\x{9544}
PHP
\x{9544}
Ruby
\u{9544}
Rust
\u{9544}
Go
\u9544

Web

CSS
\009544
HtmlDecimal
镄
HtmlHexadecimal
镄
Url
%E9%95%84

Code

MD5
08198a81997683f98ee1712cc7ccd89b
Sha1
8ed06e36bdc936be74559e582734ed5bcc675f83
Base64
6ZWE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9544';
console.log(char);  // Output: 镄

Java:

char c = '\u9544';
System.out.println(c);  // Output: 镄

JSON:

{"text": "\u9544"}  // Value: 镄

Python:

char = '\u9544'
print(char)  # Output: 镄

Perl:

my $char = "\x{9544}";
print $char;  # Output: 镄

PHP:

$char = "\x{9544}";
echo $char;  // Output: 镄

Ruby:

char = "\u{9544}"
puts char  # Output: 镄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009544";  /* Display: 镄 */
}

HTML Decimal:

<p>HTML decimal: &#38212;</p>  <!-- Display: 镄 -->

HTML Hexadecimal:

<p>HTML hex: &#x9544;</p>  <!-- Display: 镄 -->

URL Encoding:

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

Encodings

MD5:

08198a81997683f98ee1712cc7ccd89b

SHA1:

8ed06e36bdc936be74559e582734ed5bcc675f83

Base64:

6ZWE