Unicode Finder

"颟" U+989F(CJK UNIFIED IDEOGRAPH-989F)

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

Programming

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

Web

CSS
\00989F
HtmlDecimal
颟
HtmlHexadecimal
颟
Url
%E9%A2%9F

Code

MD5
8ed813a795fc829c35444604345c5ca7
Sha1
7d1e2385e30df6b3d89513dcaf8fce147ffbd37e
Base64
6aKf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u989F';
console.log(char);  // Output: 颟

Java:

char c = '\u989F';
System.out.println(c);  // Output: 颟

JSON:

{"text": "\u989F"}  // Value: 颟

Python:

char = '\u989F'
print(char)  # Output: 颟

Perl:

my $char = "\x{989F}";
print $char;  # Output: 颟

PHP:

$char = "\x{989F}";
echo $char;  // Output: 颟

Ruby:

char = "\u{989F}"
puts char  # Output: 颟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39071;</p>  <!-- Display: 颟 -->

HTML Hexadecimal:

<p>HTML hex: &#x989F;</p>  <!-- Display: 颟 -->

URL Encoding:

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

Encodings

MD5:

8ed813a795fc829c35444604345c5ca7

SHA1:

7d1e2385e30df6b3d89513dcaf8fce147ffbd37e

Base64:

6aKf