Unicode Finder

"鐲" U+9432(CJK UNIFIED IDEOGRAPH-9432)

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

Programming

C
\u9432
JavaScript
\u9432
Java
\u9432
Json
\u9432
Python
\u9432
Perl
\x{9432}
PHP
\x{9432}
Ruby
\u{9432}
Rust
\u{9432}
Go
\u9432

Web

CSS
\009432
HtmlDecimal
鐲
HtmlHexadecimal
鐲
Url
%E9%90%B2

Code

MD5
fc299ef866e6dbc7fa598ae2ee66f470
Sha1
4f2c7852868eb0bb269e57e3c64ce6a6cba5b4c6
Base64
6ZCy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9432';
console.log(char);  // Output: 鐲

Java:

char c = '\u9432';
System.out.println(c);  // Output: 鐲

JSON:

{"text": "\u9432"}  // Value: 鐲

Python:

char = '\u9432'
print(char)  # Output: 鐲

Perl:

my $char = "\x{9432}";
print $char;  # Output: 鐲

PHP:

$char = "\x{9432}";
echo $char;  // Output: 鐲

Ruby:

char = "\u{9432}"
puts char  # Output: 鐲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009432";  /* Display: 鐲 */
}

HTML Decimal:

<p>HTML decimal: &#37938;</p>  <!-- Display: 鐲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9432;</p>  <!-- Display: 鐲 -->

URL Encoding:

// 鐲 URL encoding
https://unicodefinder.com/search.php?query=%E9%90%B2

Encodings

MD5:

fc299ef866e6dbc7fa598ae2ee66f470

SHA1:

4f2c7852868eb0bb269e57e3c64ce6a6cba5b4c6

Base64:

6ZCy