Unicode Finder

"鞁" U+9781(CJK UNIFIED IDEOGRAPH-9781)

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

Programming

C
\u9781
JavaScript
\u9781
Java
\u9781
Json
\u9781
Python
\u9781
Perl
\x{9781}
PHP
\x{9781}
Ruby
\u{9781}
Rust
\u{9781}
Go
\u9781

Web

CSS
\009781
HtmlDecimal
鞁
HtmlHexadecimal
鞁
Url
%E9%9E%81

Code

MD5
44e9fc7a7de616ccea3bf514e18e71d2
Sha1
a4721fe9aec70adb2f4b05fc7bdf83ab3b6b7f6e
Base64
6Z6B

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9781';
console.log(char);  // Output: 鞁

Java:

char c = '\u9781';
System.out.println(c);  // Output: 鞁

JSON:

{"text": "\u9781"}  // Value: 鞁

Python:

char = '\u9781'
print(char)  # Output: 鞁

Perl:

my $char = "\x{9781}";
print $char;  # Output: 鞁

PHP:

$char = "\x{9781}";
echo $char;  // Output: 鞁

Ruby:

char = "\u{9781}"
puts char  # Output: 鞁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009781";  /* Display: 鞁 */
}

HTML Decimal:

<p>HTML decimal: &#38785;</p>  <!-- Display: 鞁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9781;</p>  <!-- Display: 鞁 -->

URL Encoding:

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

Encodings

MD5:

44e9fc7a7de616ccea3bf514e18e71d2

SHA1:

a4721fe9aec70adb2f4b05fc7bdf83ab3b6b7f6e

Base64:

6Z6B