Unicode Finder

"鄡" U+9121(CJK UNIFIED IDEOGRAPH-9121)

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

Programming

C
\u9121
JavaScript
\u9121
Java
\u9121
Json
\u9121
Python
\u9121
Perl
\x{9121}
PHP
\x{9121}
Ruby
\u{9121}
Rust
\u{9121}
Go
\u9121

Web

CSS
\009121
HtmlDecimal
鄡
HtmlHexadecimal
鄡
Url
%E9%84%A1

Code

MD5
4cd3541d3578aae911126ea2b2be437f
Sha1
de39c6ffcfdbebf07849fdfe2ee8bfd5ccf1e86b
Base64
6YSh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9121';
console.log(char);  // Output: 鄡

Java:

char c = '\u9121';
System.out.println(c);  // Output: 鄡

JSON:

{"text": "\u9121"}  // Value: 鄡

Python:

char = '\u9121'
print(char)  # Output: 鄡

Perl:

my $char = "\x{9121}";
print $char;  # Output: 鄡

PHP:

$char = "\x{9121}";
echo $char;  // Output: 鄡

Ruby:

char = "\u{9121}"
puts char  # Output: 鄡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009121";  /* Display: 鄡 */
}

HTML Decimal:

<p>HTML decimal: &#37153;</p>  <!-- Display: 鄡 -->

HTML Hexadecimal:

<p>HTML hex: &#x9121;</p>  <!-- Display: 鄡 -->

URL Encoding:

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

Encodings

MD5:

4cd3541d3578aae911126ea2b2be437f

SHA1:

de39c6ffcfdbebf07849fdfe2ee8bfd5ccf1e86b

Base64:

6YSh