Unicode Finder

"頱" U+9831(CJK UNIFIED IDEOGRAPH-9831)

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

Programming

C
\u9831
JavaScript
\u9831
Java
\u9831
Json
\u9831
Python
\u9831
Perl
\x{9831}
PHP
\x{9831}
Ruby
\u{9831}
Rust
\u{9831}
Go
\u9831

Web

CSS
\009831
HtmlDecimal
頱
HtmlHexadecimal
頱
Url
%E9%A0%B1

Code

MD5
dbc64fd2c25fb660cbbbfc2cf656a194
Sha1
afd95cc1b267316f36a00a74b22a51ebbdb9205c
Base64
6aCx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9831';
console.log(char);  // Output: 頱

Java:

char c = '\u9831';
System.out.println(c);  // Output: 頱

JSON:

{"text": "\u9831"}  // Value: 頱

Python:

char = '\u9831'
print(char)  # Output: 頱

Perl:

my $char = "\x{9831}";
print $char;  # Output: 頱

PHP:

$char = "\x{9831}";
echo $char;  // Output: 頱

Ruby:

char = "\u{9831}"
puts char  # Output: 頱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009831";  /* Display: 頱 */
}

HTML Decimal:

<p>HTML decimal: &#38961;</p>  <!-- Display: 頱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9831;</p>  <!-- Display: 頱 -->

URL Encoding:

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

Encodings

MD5:

dbc64fd2c25fb660cbbbfc2cf656a194

SHA1:

afd95cc1b267316f36a00a74b22a51ebbdb9205c

Base64:

6aCx