Unicode Finder

"頧" U+9827(CJK UNIFIED IDEOGRAPH-9827)

U+9827
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9827

Programming

C
\u9827
JavaScript
\u9827
Java
\u9827
Json
\u9827
Python
\u9827
Perl
\x{9827}
PHP
\x{9827}
Ruby
\u{9827}
Rust
\u{9827}
Go
\u9827

Web

CSS
\009827
HtmlDecimal
頧
HtmlHexadecimal
頧
Url
%E9%A0%A7

Code

MD5
44afb9242d99685a468c22b18b943602
Sha1
bb6dd376d7366fe0dfb97bb89d32f1b4580563c7
Base64
6aCn

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9827';
console.log(char);  // Output: 頧

Java:

char c = '\u9827';
System.out.println(c);  // Output: 頧

JSON:

{"text": "\u9827"}  // Value: 頧

Python:

char = '\u9827'
print(char)  # Output: 頧

Perl:

my $char = "\x{9827}";
print $char;  # Output: 頧

PHP:

$char = "\x{9827}";
echo $char;  // Output: 頧

Ruby:

char = "\u{9827}"
puts char  # Output: 頧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009827";  /* Display: 頧 */
}

HTML Decimal:

<p>HTML decimal: &#38951;</p>  <!-- Display: 頧 -->

HTML Hexadecimal:

<p>HTML hex: &#x9827;</p>  <!-- Display: 頧 -->

URL Encoding:

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

Encodings

MD5:

44afb9242d99685a468c22b18b943602

SHA1:

bb6dd376d7366fe0dfb97bb89d32f1b4580563c7

Base64:

6aCn