Unicode Finder

"鞇" U+9787(CJK UNIFIED IDEOGRAPH-9787)

U+9787
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9787

Programming

C
\u9787
JavaScript
\u9787
Java
\u9787
Json
\u9787
Python
\u9787
Perl
\x{9787}
PHP
\x{9787}
Ruby
\u{9787}
Rust
\u{9787}
Go
\u9787

Web

CSS
\009787
HtmlDecimal
鞇
HtmlHexadecimal
鞇
Url
%E9%9E%87

Code

MD5
1cefa4d6505fd8a1301563efd8be5b6b
Sha1
95b85b8aed8adc0876aa08a751d9f92c20482c6a
Base64
6Z6H

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9787';
console.log(char);  // Output: 鞇

Java:

char c = '\u9787';
System.out.println(c);  // Output: 鞇

JSON:

{"text": "\u9787"}  // Value: 鞇

Python:

char = '\u9787'
print(char)  # Output: 鞇

Perl:

my $char = "\x{9787}";
print $char;  # Output: 鞇

PHP:

$char = "\x{9787}";
echo $char;  // Output: 鞇

Ruby:

char = "\u{9787}"
puts char  # Output: 鞇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009787";  /* Display: 鞇 */
}

HTML Decimal:

<p>HTML decimal: &#38791;</p>  <!-- Display: 鞇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9787;</p>  <!-- Display: 鞇 -->

URL Encoding:

// 鞇 URL encoding
https://unicodefinder.com/search.php?query=%E9%9E%87

Encodings

MD5:

1cefa4d6505fd8a1301563efd8be5b6b

SHA1:

95b85b8aed8adc0876aa08a751d9f92c20482c6a

Base64:

6Z6H