Unicode Finder

"颓" U+9893(CJK UNIFIED IDEOGRAPH-9893)

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

Programming

C
\u9893
JavaScript
\u9893
Java
\u9893
Json
\u9893
Python
\u9893
Perl
\x{9893}
PHP
\x{9893}
Ruby
\u{9893}
Rust
\u{9893}
Go
\u9893

Web

CSS
\009893
HtmlDecimal
颓
HtmlHexadecimal
颓
Url
%E9%A2%93

Code

MD5
9d2510cad264dc92d613089991fc607f
Sha1
e9bac9a8db587c9ae6951f4a1c0df5635a586cfa
Base64
6aKT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9893';
console.log(char);  // Output: 颓

Java:

char c = '\u9893';
System.out.println(c);  // Output: 颓

JSON:

{"text": "\u9893"}  // Value: 颓

Python:

char = '\u9893'
print(char)  # Output: 颓

Perl:

my $char = "\x{9893}";
print $char;  # Output: 颓

PHP:

$char = "\x{9893}";
echo $char;  // Output: 颓

Ruby:

char = "\u{9893}"
puts char  # Output: 颓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009893";  /* Display: 颓 */
}

HTML Decimal:

<p>HTML decimal: &#39059;</p>  <!-- Display: 颓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9893;</p>  <!-- Display: 颓 -->

URL Encoding:

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

Encodings

MD5:

9d2510cad264dc92d613089991fc607f

SHA1:

e9bac9a8db587c9ae6951f4a1c0df5635a586cfa

Base64:

6aKT