Unicode Finder

"頑" U+9811(CJK UNIFIED IDEOGRAPH-9811)

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

Programming

C
\u9811
JavaScript
\u9811
Java
\u9811
Json
\u9811
Python
\u9811
Perl
\x{9811}
PHP
\x{9811}
Ruby
\u{9811}
Rust
\u{9811}
Go
\u9811

Web

CSS
\009811
HtmlDecimal
頑
HtmlHexadecimal
頑
Url
%E9%A0%91

Code

MD5
607f19a47295925cbdbae28d237cc01f
Sha1
c88a891571c678d8ae533b4c5d93cc91e5a3a302
Base64
6aCR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9811';
console.log(char);  // Output: 頑

Java:

char c = '\u9811';
System.out.println(c);  // Output: 頑

JSON:

{"text": "\u9811"}  // Value: 頑

Python:

char = '\u9811'
print(char)  # Output: 頑

Perl:

my $char = "\x{9811}";
print $char;  # Output: 頑

PHP:

$char = "\x{9811}";
echo $char;  // Output: 頑

Ruby:

char = "\u{9811}"
puts char  # Output: 頑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009811";  /* Display: 頑 */
}

HTML Decimal:

<p>HTML decimal: &#38929;</p>  <!-- Display: 頑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9811;</p>  <!-- Display: 頑 -->

URL Encoding:

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

Encodings

MD5:

607f19a47295925cbdbae28d237cc01f

SHA1:

c88a891571c678d8ae533b4c5d93cc91e5a3a302

Base64:

6aCR