Unicode Finder

"鄱" U+9131(CJK UNIFIED IDEOGRAPH-9131)

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

Programming

C
\u9131
JavaScript
\u9131
Java
\u9131
Json
\u9131
Python
\u9131
Perl
\x{9131}
PHP
\x{9131}
Ruby
\u{9131}
Rust
\u{9131}
Go
\u9131

Web

CSS
\009131
HtmlDecimal
鄱
HtmlHexadecimal
鄱
Url
%E9%84%B1

Code

MD5
3d1ea3e4ff5a9819c94fb29c86b88cfb
Sha1
2bf004f68de5538e059702a548cc636888e0a5f5
Base64
6YSx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9131';
console.log(char);  // Output: 鄱

Java:

char c = '\u9131';
System.out.println(c);  // Output: 鄱

JSON:

{"text": "\u9131"}  // Value: 鄱

Python:

char = '\u9131'
print(char)  # Output: 鄱

Perl:

my $char = "\x{9131}";
print $char;  # Output: 鄱

PHP:

$char = "\x{9131}";
echo $char;  // Output: 鄱

Ruby:

char = "\u{9131}"
puts char  # Output: 鄱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009131";  /* Display: 鄱 */
}

HTML Decimal:

<p>HTML decimal: &#37169;</p>  <!-- Display: 鄱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9131;</p>  <!-- Display: 鄱 -->

URL Encoding:

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

Encodings

MD5:

3d1ea3e4ff5a9819c94fb29c86b88cfb

SHA1:

2bf004f68de5538e059702a548cc636888e0a5f5

Base64:

6YSx