Unicode Finder

"颏" U+988F(CJK UNIFIED IDEOGRAPH-988F)

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

Programming

C
\u988F
JavaScript
\u988F
Java
\u988F
Json
\u988F
Python
\u988F
Perl
\x{988F}
PHP
\x{988F}
Ruby
\u{988F}
Rust
\u{988F}
Go
\u988F

Web

CSS
\00988F
HtmlDecimal
颏
HtmlHexadecimal
颏
Url
%E9%A2%8F

Code

MD5
3f1e1cf40524838f3277ca3f574b554f
Sha1
74f422b7b853306d9bbba5146ab1866917aee3cd
Base64
6aKP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u988F';
console.log(char);  // Output: 颏

Java:

char c = '\u988F';
System.out.println(c);  // Output: 颏

JSON:

{"text": "\u988F"}  // Value: 颏

Python:

char = '\u988F'
print(char)  # Output: 颏

Perl:

my $char = "\x{988F}";
print $char;  # Output: 颏

PHP:

$char = "\x{988F}";
echo $char;  // Output: 颏

Ruby:

char = "\u{988F}"
puts char  # Output: 颏

Rust:

let c = '\u{988F}';
println!("{}", c);  // Output: 颏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00988F";  /* Display: 颏 */
}

HTML Decimal:

<p>HTML decimal: &#39055;</p>  <!-- Display: 颏 -->

HTML Hexadecimal:

<p>HTML hex: &#x988F;</p>  <!-- Display: 颏 -->

URL Encoding:

// 颏 URL encoding
https://unicodefinder.com/search.php?query=%E9%A2%8F

Encodings

MD5:

3f1e1cf40524838f3277ca3f574b554f

SHA1:

74f422b7b853306d9bbba5146ab1866917aee3cd

Base64:

6aKP