Unicode Finder

"鄕" U+9115(CJK UNIFIED IDEOGRAPH-9115)

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

Programming

C
\u9115
JavaScript
\u9115
Java
\u9115
Json
\u9115
Python
\u9115
Perl
\x{9115}
PHP
\x{9115}
Ruby
\u{9115}
Rust
\u{9115}
Go
\u9115

Web

CSS
\009115
HtmlDecimal
鄕
HtmlHexadecimal
鄕
Url
%E9%84%95

Code

MD5
a0f8fd6c70c5af56a7e38a51f71f6763
Sha1
97a3a7598c136b31becb970dd37d5c24bb40ca93
Base64
6YSV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9115';
console.log(char);  // Output: 鄕

Java:

char c = '\u9115';
System.out.println(c);  // Output: 鄕

JSON:

{"text": "\u9115"}  // Value: 鄕

Python:

char = '\u9115'
print(char)  # Output: 鄕

Perl:

my $char = "\x{9115}";
print $char;  # Output: 鄕

PHP:

$char = "\x{9115}";
echo $char;  // Output: 鄕

Ruby:

char = "\u{9115}"
puts char  # Output: 鄕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009115";  /* Display: 鄕 */
}

HTML Decimal:

<p>HTML decimal: &#37141;</p>  <!-- Display: 鄕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9115;</p>  <!-- Display: 鄕 -->

URL Encoding:

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

Encodings

MD5:

a0f8fd6c70c5af56a7e38a51f71f6763

SHA1:

97a3a7598c136b31becb970dd37d5c24bb40ca93

Base64:

6YSV