Unicode Finder

"鄗" U+9117(CJK UNIFIED IDEOGRAPH-9117)

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

Programming

C
\u9117
JavaScript
\u9117
Java
\u9117
Json
\u9117
Python
\u9117
Perl
\x{9117}
PHP
\x{9117}
Ruby
\u{9117}
Rust
\u{9117}
Go
\u9117

Web

CSS
\009117
HtmlDecimal
鄗
HtmlHexadecimal
鄗
Url
%E9%84%97

Code

MD5
eadf25dc3c9717a26fd58e6bd6c5876b
Sha1
2bfff5b3561a029eafcb4f21c685012f133ce556
Base64
6YSX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9117';
console.log(char);  // Output: 鄗

Java:

char c = '\u9117';
System.out.println(c);  // Output: 鄗

JSON:

{"text": "\u9117"}  // Value: 鄗

Python:

char = '\u9117'
print(char)  # Output: 鄗

Perl:

my $char = "\x{9117}";
print $char;  # Output: 鄗

PHP:

$char = "\x{9117}";
echo $char;  // Output: 鄗

Ruby:

char = "\u{9117}"
puts char  # Output: 鄗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009117";  /* Display: 鄗 */
}

HTML Decimal:

<p>HTML decimal: &#37143;</p>  <!-- Display: 鄗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9117;</p>  <!-- Display: 鄗 -->

URL Encoding:

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

Encodings

MD5:

eadf25dc3c9717a26fd58e6bd6c5876b

SHA1:

2bfff5b3561a029eafcb4f21c685012f133ce556

Base64:

6YSX