Unicode Finder

"鄣" U+9123(CJK UNIFIED IDEOGRAPH-9123)

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

Programming

C
\u9123
JavaScript
\u9123
Java
\u9123
Json
\u9123
Python
\u9123
Perl
\x{9123}
PHP
\x{9123}
Ruby
\u{9123}
Rust
\u{9123}
Go
\u9123

Web

CSS
\009123
HtmlDecimal
鄣
HtmlHexadecimal
鄣
Url
%E9%84%A3

Code

MD5
13aac01dea0789489769f67245963e9b
Sha1
e4803ee2eb18b1403381728399ce5dbe3dcd0dc4
Base64
6YSj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9123';
console.log(char);  // Output: 鄣

Java:

char c = '\u9123';
System.out.println(c);  // Output: 鄣

JSON:

{"text": "\u9123"}  // Value: 鄣

Python:

char = '\u9123'
print(char)  # Output: 鄣

Perl:

my $char = "\x{9123}";
print $char;  # Output: 鄣

PHP:

$char = "\x{9123}";
echo $char;  // Output: 鄣

Ruby:

char = "\u{9123}"
puts char  # Output: 鄣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009123";  /* Display: 鄣 */
}

HTML Decimal:

<p>HTML decimal: &#37155;</p>  <!-- Display: 鄣 -->

HTML Hexadecimal:

<p>HTML hex: &#x9123;</p>  <!-- Display: 鄣 -->

URL Encoding:

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

Encodings

MD5:

13aac01dea0789489769f67245963e9b

SHA1:

e4803ee2eb18b1403381728399ce5dbe3dcd0dc4

Base64:

6YSj