Unicode Finder

"鞈" U+9788(CJK UNIFIED IDEOGRAPH-9788)

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

Programming

C
\u9788
JavaScript
\u9788
Java
\u9788
Json
\u9788
Python
\u9788
Perl
\x{9788}
PHP
\x{9788}
Ruby
\u{9788}
Rust
\u{9788}
Go
\u9788

Web

CSS
\009788
HtmlDecimal
鞈
HtmlHexadecimal
鞈
Url
%E9%9E%88

Code

MD5
16c63cfe13cfa0717012feab61441482
Sha1
a28bce09a9be5f83432ea59a1d71d7f7e46400b4
Base64
6Z6I

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9788';
console.log(char);  // Output: 鞈

Java:

char c = '\u9788';
System.out.println(c);  // Output: 鞈

JSON:

{"text": "\u9788"}  // Value: 鞈

Python:

char = '\u9788'
print(char)  # Output: 鞈

Perl:

my $char = "\x{9788}";
print $char;  # Output: 鞈

PHP:

$char = "\x{9788}";
echo $char;  // Output: 鞈

Ruby:

char = "\u{9788}"
puts char  # Output: 鞈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009788";  /* Display: 鞈 */
}

HTML Decimal:

<p>HTML decimal: &#38792;</p>  <!-- Display: 鞈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9788;</p>  <!-- Display: 鞈 -->

URL Encoding:

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

Encodings

MD5:

16c63cfe13cfa0717012feab61441482

SHA1:

a28bce09a9be5f83432ea59a1d71d7f7e46400b4

Base64:

6Z6I