Unicode Finder

"鄓" U+9113(CJK UNIFIED IDEOGRAPH-9113)

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

Programming

C
\u9113
JavaScript
\u9113
Java
\u9113
Json
\u9113
Python
\u9113
Perl
\x{9113}
PHP
\x{9113}
Ruby
\u{9113}
Rust
\u{9113}
Go
\u9113

Web

CSS
\009113
HtmlDecimal
鄓
HtmlHexadecimal
鄓
Url
%E9%84%93

Code

MD5
c030d9439279f858045faaa068f659f1
Sha1
2eda896ac6f22df47cb496e056124b19926ec6b0
Base64
6YST

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9113';
console.log(char);  // Output: 鄓

Java:

char c = '\u9113';
System.out.println(c);  // Output: 鄓

JSON:

{"text": "\u9113"}  // Value: 鄓

Python:

char = '\u9113'
print(char)  # Output: 鄓

Perl:

my $char = "\x{9113}";
print $char;  # Output: 鄓

PHP:

$char = "\x{9113}";
echo $char;  // Output: 鄓

Ruby:

char = "\u{9113}"
puts char  # Output: 鄓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009113";  /* Display: 鄓 */
}

HTML Decimal:

<p>HTML decimal: &#37139;</p>  <!-- Display: 鄓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9113;</p>  <!-- Display: 鄓 -->

URL Encoding:

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

Encodings

MD5:

c030d9439279f858045faaa068f659f1

SHA1:

2eda896ac6f22df47cb496e056124b19926ec6b0

Base64:

6YST