Unicode Finder

"颁" U+9881(CJK UNIFIED IDEOGRAPH-9881)

U+9881
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9881

Programming

C
\u9881
JavaScript
\u9881
Java
\u9881
Json
\u9881
Python
\u9881
Perl
\x{9881}
PHP
\x{9881}
Ruby
\u{9881}
Rust
\u{9881}
Go
\u9881

Web

CSS
\009881
HtmlDecimal
颁
HtmlHexadecimal
颁
Url
%E9%A2%81

Code

MD5
14649cb44e2d5b1aaeee8f8482a1f888
Sha1
25e421f3931e418b33cbd01ca6811baad6dc697d
Base64
6aKB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9881';
console.log(char);  // Output: 颁

Java:

char c = '\u9881';
System.out.println(c);  // Output: 颁

JSON:

{"text": "\u9881"}  // Value: 颁

Python:

char = '\u9881'
print(char)  # Output: 颁

Perl:

my $char = "\x{9881}";
print $char;  # Output: 颁

PHP:

$char = "\x{9881}";
echo $char;  // Output: 颁

Ruby:

char = "\u{9881}"
puts char  # Output: 颁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009881";  /* Display: 颁 */
}

HTML Decimal:

<p>HTML decimal: &#39041;</p>  <!-- Display: 颁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9881;</p>  <!-- Display: 颁 -->

URL Encoding:

// 颁 URL encoding
https://unicodefinder.com/search.php?query=%E9%A2%81

Encodings

MD5:

14649cb44e2d5b1aaeee8f8482a1f888

SHA1:

25e421f3931e418b33cbd01ca6811baad6dc697d

Base64:

6aKB