Unicode Finder

"颮" U+98AE(CJK UNIFIED IDEOGRAPH-98AE)

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

Programming

C
\u98AE
JavaScript
\u98AE
Java
\u98AE
Json
\u98AE
Python
\u98AE
Perl
\x{98AE}
PHP
\x{98AE}
Ruby
\u{98AE}
Rust
\u{98AE}
Go
\u98AE

Web

CSS
\0098AE
HtmlDecimal
颮
HtmlHexadecimal
颮
Url
%E9%A2%AE

Code

MD5
e72421ac8c5b1b97033f6208d657afb7
Sha1
f8d9562e33f9c154c5a611cf8eaf166a1715cb0a
Base64
6aKu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u98AE';
console.log(char);  // Output: 颮

Java:

char c = '\u98AE';
System.out.println(c);  // Output: 颮

JSON:

{"text": "\u98AE"}  // Value: 颮

Python:

char = '\u98AE'
print(char)  # Output: 颮

Perl:

my $char = "\x{98AE}";
print $char;  # Output: 颮

PHP:

$char = "\x{98AE}";
echo $char;  // Output: 颮

Ruby:

char = "\u{98AE}"
puts char  # Output: 颮

Rust:

let c = '\u{98AE}';
println!("{}", c);  // Output: 颮

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0098AE";  /* Display: 颮 */
}

HTML Decimal:

<p>HTML decimal: &#39086;</p>  <!-- Display: 颮 -->

HTML Hexadecimal:

<p>HTML hex: &#x98AE;</p>  <!-- Display: 颮 -->

URL Encoding:

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

Encodings

MD5:

e72421ac8c5b1b97033f6208d657afb7

SHA1:

f8d9562e33f9c154c5a611cf8eaf166a1715cb0a

Base64:

6aKu