Unicode Finder

"锰" U+9530(CJK UNIFIED IDEOGRAPH-9530)

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

Programming

C
\u9530
JavaScript
\u9530
Java
\u9530
Json
\u9530
Python
\u9530
Perl
\x{9530}
PHP
\x{9530}
Ruby
\u{9530}
Rust
\u{9530}
Go
\u9530

Web

CSS
\009530
HtmlDecimal
锰
HtmlHexadecimal
锰
Url
%E9%94%B0

Code

MD5
c124fd57014a84ba2e8bf107adfcd00c
Sha1
958a6df97e425682a4137f9d2b34d3ec4685a124
Base64
6ZSw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9530';
console.log(char);  // Output: 锰

Java:

char c = '\u9530';
System.out.println(c);  // Output: 锰

JSON:

{"text": "\u9530"}  // Value: 锰

Python:

char = '\u9530'
print(char)  # Output: 锰

Perl:

my $char = "\x{9530}";
print $char;  # Output: 锰

PHP:

$char = "\x{9530}";
echo $char;  // Output: 锰

Ruby:

char = "\u{9530}"
puts char  # Output: 锰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009530";  /* Display: 锰 */
}

HTML Decimal:

<p>HTML decimal: &#38192;</p>  <!-- Display: 锰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9530;</p>  <!-- Display: 锰 -->

URL Encoding:

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

Encodings

MD5:

c124fd57014a84ba2e8bf107adfcd00c

SHA1:

958a6df97e425682a4137f9d2b34d3ec4685a124

Base64:

6ZSw