Unicode Finder

"鄳" U+9133(CJK UNIFIED IDEOGRAPH-9133)

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

Programming

C
\u9133
JavaScript
\u9133
Java
\u9133
Json
\u9133
Python
\u9133
Perl
\x{9133}
PHP
\x{9133}
Ruby
\u{9133}
Rust
\u{9133}
Go
\u9133

Web

CSS
\009133
HtmlDecimal
鄳
HtmlHexadecimal
鄳
Url
%E9%84%B3

Code

MD5
7ab104031e210ea8ef528d9dd11a6fc9
Sha1
4c373fe91044ae8fe52f565ec87786ddffa196a1
Base64
6YSz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9133';
console.log(char);  // Output: 鄳

Java:

char c = '\u9133';
System.out.println(c);  // Output: 鄳

JSON:

{"text": "\u9133"}  // Value: 鄳

Python:

char = '\u9133'
print(char)  # Output: 鄳

Perl:

my $char = "\x{9133}";
print $char;  # Output: 鄳

PHP:

$char = "\x{9133}";
echo $char;  // Output: 鄳

Ruby:

char = "\u{9133}"
puts char  # Output: 鄳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009133";  /* Display: 鄳 */
}

HTML Decimal:

<p>HTML decimal: &#37171;</p>  <!-- Display: 鄳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9133;</p>  <!-- Display: 鄳 -->

URL Encoding:

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

Encodings

MD5:

7ab104031e210ea8ef528d9dd11a6fc9

SHA1:

4c373fe91044ae8fe52f565ec87786ddffa196a1

Base64:

6YSz