Unicode Finder

"隉" U+9689(CJK UNIFIED IDEOGRAPH-9689)

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

Programming

C
\u9689
JavaScript
\u9689
Java
\u9689
Json
\u9689
Python
\u9689
Perl
\x{9689}
PHP
\x{9689}
Ruby
\u{9689}
Rust
\u{9689}
Go
\u9689

Web

CSS
\009689
HtmlDecimal
隉
HtmlHexadecimal
隉
Url
%E9%9A%89

Code

MD5
b98bb3685d7625e33be6ac6c9ec4b8a1
Sha1
34db805fe16bf9208b54b8e5a36c978d82ea8bfc
Base64
6ZqJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9689';
console.log(char);  // Output: 隉

Java:

char c = '\u9689';
System.out.println(c);  // Output: 隉

JSON:

{"text": "\u9689"}  // Value: 隉

Python:

char = '\u9689'
print(char)  # Output: 隉

Perl:

my $char = "\x{9689}";
print $char;  # Output: 隉

PHP:

$char = "\x{9689}";
echo $char;  // Output: 隉

Ruby:

char = "\u{9689}"
puts char  # Output: 隉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009689";  /* Display: 隉 */
}

HTML Decimal:

<p>HTML decimal: &#38537;</p>  <!-- Display: 隉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9689;</p>  <!-- Display: 隉 -->

URL Encoding:

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

Encodings

MD5:

b98bb3685d7625e33be6ac6c9ec4b8a1

SHA1:

34db805fe16bf9208b54b8e5a36c978d82ea8bfc

Base64:

6ZqJ