Unicode Finder

"鞃" U+9783(CJK UNIFIED IDEOGRAPH-9783)

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

Programming

C
\u9783
JavaScript
\u9783
Java
\u9783
Json
\u9783
Python
\u9783
Perl
\x{9783}
PHP
\x{9783}
Ruby
\u{9783}
Rust
\u{9783}
Go
\u9783

Web

CSS
\009783
HtmlDecimal
鞃
HtmlHexadecimal
鞃
Url
%E9%9E%83

Code

MD5
03bb84239d37c3fcb57aba04ceeb30e1
Sha1
bb00e652b86840891f09c8e00247c5b0f5b60b04
Base64
6Z6D

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9783';
console.log(char);  // Output: 鞃

Java:

char c = '\u9783';
System.out.println(c);  // Output: 鞃

JSON:

{"text": "\u9783"}  // Value: 鞃

Python:

char = '\u9783'
print(char)  # Output: 鞃

Perl:

my $char = "\x{9783}";
print $char;  # Output: 鞃

PHP:

$char = "\x{9783}";
echo $char;  // Output: 鞃

Ruby:

char = "\u{9783}"
puts char  # Output: 鞃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009783";  /* Display: 鞃 */
}

HTML Decimal:

<p>HTML decimal: &#38787;</p>  <!-- Display: 鞃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9783;</p>  <!-- Display: 鞃 -->

URL Encoding:

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

Encodings

MD5:

03bb84239d37c3fcb57aba04ceeb30e1

SHA1:

bb00e652b86840891f09c8e00247c5b0f5b60b04

Base64:

6Z6D