Unicode Finder

"颃" U+9883(CJK UNIFIED IDEOGRAPH-9883)

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

Programming

C
\u9883
JavaScript
\u9883
Java
\u9883
Json
\u9883
Python
\u9883
Perl
\x{9883}
PHP
\x{9883}
Ruby
\u{9883}
Rust
\u{9883}
Go
\u9883

Web

CSS
\009883
HtmlDecimal
颃
HtmlHexadecimal
颃
Url
%E9%A2%83

Code

MD5
cfc42d7c1227dd2af6c530f224aa8d76
Sha1
21d679df1cfa58888e9c00c3d6aca71c39ccaedf
Base64
6aKD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9883';
console.log(char);  // Output: 颃

Java:

char c = '\u9883';
System.out.println(c);  // Output: 颃

JSON:

{"text": "\u9883"}  // Value: 颃

Python:

char = '\u9883'
print(char)  # Output: 颃

Perl:

my $char = "\x{9883}";
print $char;  # Output: 颃

PHP:

$char = "\x{9883}";
echo $char;  // Output: 颃

Ruby:

char = "\u{9883}"
puts char  # Output: 颃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009883";  /* Display: 颃 */
}

HTML Decimal:

<p>HTML decimal: &#39043;</p>  <!-- Display: 颃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9883;</p>  <!-- Display: 颃 -->

URL Encoding:

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

Encodings

MD5:

cfc42d7c1227dd2af6c530f224aa8d76

SHA1:

21d679df1cfa58888e9c00c3d6aca71c39ccaedf

Base64:

6aKD