Unicode Finder

"顿" U+987F(CJK UNIFIED IDEOGRAPH-987F)

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

Programming

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

Web

CSS
\00987F
HtmlDecimal
顿
HtmlHexadecimal
顿
Url
%E9%A1%BF

Code

MD5
21cd7acd92e91c44ef17a0dda556ae09
Sha1
d8b235eb14dc1d9d6edc2f48a9f632aeca3dcccf
Base64
6aG/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u987F';
console.log(char);  // Output: 顿

Java:

char c = '\u987F';
System.out.println(c);  // Output: 顿

JSON:

{"text": "\u987F"}  // Value: 顿

Python:

char = '\u987F'
print(char)  # Output: 顿

Perl:

my $char = "\x{987F}";
print $char;  # Output: 顿

PHP:

$char = "\x{987F}";
echo $char;  // Output: 顿

Ruby:

char = "\u{987F}"
puts char  # Output: 顿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39039;</p>  <!-- Display: 顿 -->

HTML Hexadecimal:

<p>HTML hex: &#x987F;</p>  <!-- Display: 顿 -->

URL Encoding:

// 顿 URL encoding
https://unicodefinder.com/search.php?query=%E9%A1%BF

Encodings

MD5:

21cd7acd92e91c44ef17a0dda556ae09

SHA1:

d8b235eb14dc1d9d6edc2f48a9f632aeca3dcccf

Base64:

6aG/