Unicode Finder

"鄉" U+9109(CJK UNIFIED IDEOGRAPH-9109)

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

Programming

C
\u9109
JavaScript
\u9109
Java
\u9109
Json
\u9109
Python
\u9109
Perl
\x{9109}
PHP
\x{9109}
Ruby
\u{9109}
Rust
\u{9109}
Go
\u9109

Web

CSS
\009109
HtmlDecimal
鄉
HtmlHexadecimal
鄉
Url
%E9%84%89

Code

MD5
c5d3e2e9ea9bb73a322e34e5c0bbb805
Sha1
7bbca3af5daafa89762fe1cf2685fc32dced7a09
Base64
6YSJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9109';
console.log(char);  // Output: 鄉

Java:

char c = '\u9109';
System.out.println(c);  // Output: 鄉

JSON:

{"text": "\u9109"}  // Value: 鄉

Python:

char = '\u9109'
print(char)  # Output: 鄉

Perl:

my $char = "\x{9109}";
print $char;  # Output: 鄉

PHP:

$char = "\x{9109}";
echo $char;  // Output: 鄉

Ruby:

char = "\u{9109}"
puts char  # Output: 鄉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009109";  /* Display: 鄉 */
}

HTML Decimal:

<p>HTML decimal: &#37129;</p>  <!-- Display: 鄉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9109;</p>  <!-- Display: 鄉 -->

URL Encoding:

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

Encodings

MD5:

c5d3e2e9ea9bb73a322e34e5c0bbb805

SHA1:

7bbca3af5daafa89762fe1cf2685fc32dced7a09

Base64:

6YSJ