Unicode Finder

"锱" U+9531(CJK UNIFIED IDEOGRAPH-9531)

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

Programming

C
\u9531
JavaScript
\u9531
Java
\u9531
Json
\u9531
Python
\u9531
Perl
\x{9531}
PHP
\x{9531}
Ruby
\u{9531}
Rust
\u{9531}
Go
\u9531

Web

CSS
\009531
HtmlDecimal
锱
HtmlHexadecimal
锱
Url
%E9%94%B1

Code

MD5
73bed22718f5d84d6a77e9d1c756300f
Sha1
b50c719fb4eed76cdeca3d830d11a45c9ecd404a
Base64
6ZSx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9531';
console.log(char);  // Output: 锱

Java:

char c = '\u9531';
System.out.println(c);  // Output: 锱

JSON:

{"text": "\u9531"}  // Value: 锱

Python:

char = '\u9531'
print(char)  # Output: 锱

Perl:

my $char = "\x{9531}";
print $char;  # Output: 锱

PHP:

$char = "\x{9531}";
echo $char;  // Output: 锱

Ruby:

char = "\u{9531}"
puts char  # Output: 锱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009531";  /* Display: 锱 */
}

HTML Decimal:

<p>HTML decimal: &#38193;</p>  <!-- Display: 锱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9531;</p>  <!-- Display: 锱 -->

URL Encoding:

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

Encodings

MD5:

73bed22718f5d84d6a77e9d1c756300f

SHA1:

b50c719fb4eed76cdeca3d830d11a45c9ecd404a

Base64:

6ZSx