Unicode Finder

"鄲" U+9132(CJK UNIFIED IDEOGRAPH-9132)

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

Programming

C
\u9132
JavaScript
\u9132
Java
\u9132
Json
\u9132
Python
\u9132
Perl
\x{9132}
PHP
\x{9132}
Ruby
\u{9132}
Rust
\u{9132}
Go
\u9132

Web

CSS
\009132
HtmlDecimal
鄲
HtmlHexadecimal
鄲
Url
%E9%84%B2

Code

MD5
dbab2577c7320aad9803bff21b7b518d
Sha1
fc0c98f919fa92f3dfa05796f348831e815d8377
Base64
6YSy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9132';
console.log(char);  // Output: 鄲

Java:

char c = '\u9132';
System.out.println(c);  // Output: 鄲

JSON:

{"text": "\u9132"}  // Value: 鄲

Python:

char = '\u9132'
print(char)  # Output: 鄲

Perl:

my $char = "\x{9132}";
print $char;  # Output: 鄲

PHP:

$char = "\x{9132}";
echo $char;  // Output: 鄲

Ruby:

char = "\u{9132}"
puts char  # Output: 鄲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009132";  /* Display: 鄲 */
}

HTML Decimal:

<p>HTML decimal: &#37170;</p>  <!-- Display: 鄲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9132;</p>  <!-- Display: 鄲 -->

URL Encoding:

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

Encodings

MD5:

dbab2577c7320aad9803bff21b7b518d

SHA1:

fc0c98f919fa92f3dfa05796f348831e815d8377

Base64:

6YSy