Unicode Finder

"隑" U+9691(CJK UNIFIED IDEOGRAPH-9691)

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

Programming

C
\u9691
JavaScript
\u9691
Java
\u9691
Json
\u9691
Python
\u9691
Perl
\x{9691}
PHP
\x{9691}
Ruby
\u{9691}
Rust
\u{9691}
Go
\u9691

Web

CSS
\009691
HtmlDecimal
隑
HtmlHexadecimal
隑
Url
%E9%9A%91

Code

MD5
c900ad69b8c7913bee8f40828f6f0023
Sha1
45172b64bf17537cfba1a474eaab611916438d7b
Base64
6ZqR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9691';
console.log(char);  // Output: 隑

Java:

char c = '\u9691';
System.out.println(c);  // Output: 隑

JSON:

{"text": "\u9691"}  // Value: 隑

Python:

char = '\u9691'
print(char)  # Output: 隑

Perl:

my $char = "\x{9691}";
print $char;  # Output: 隑

PHP:

$char = "\x{9691}";
echo $char;  // Output: 隑

Ruby:

char = "\u{9691}"
puts char  # Output: 隑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009691";  /* Display: 隑 */
}

HTML Decimal:

<p>HTML decimal: &#38545;</p>  <!-- Display: 隑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9691;</p>  <!-- Display: 隑 -->

URL Encoding:

// 隑 URL encoding
https://unicodefinder.com/search.php?query=%E9%9A%91

Encodings

MD5:

c900ad69b8c7913bee8f40828f6f0023

SHA1:

45172b64bf17537cfba1a474eaab611916438d7b

Base64:

6ZqR