Unicode Finder

"隗" U+9697(CJK UNIFIED IDEOGRAPH-9697)

U+9697
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9697

Programming

C
\u9697
JavaScript
\u9697
Java
\u9697
Json
\u9697
Python
\u9697
Perl
\x{9697}
PHP
\x{9697}
Ruby
\u{9697}
Rust
\u{9697}
Go
\u9697

Web

CSS
\009697
HtmlDecimal
隗
HtmlHexadecimal
隗
Url
%E9%9A%97

Code

MD5
6a50488957256e19c62b423a903712a2
Sha1
6c905860d74f3dfef096ace581684223e8a0a5b8
Base64
6ZqX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9697';
console.log(char);  // Output: 隗

Java:

char c = '\u9697';
System.out.println(c);  // Output: 隗

JSON:

{"text": "\u9697"}  // Value: 隗

Python:

char = '\u9697'
print(char)  # Output: 隗

Perl:

my $char = "\x{9697}";
print $char;  # Output: 隗

PHP:

$char = "\x{9697}";
echo $char;  // Output: 隗

Ruby:

char = "\u{9697}"
puts char  # Output: 隗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009697";  /* Display: 隗 */
}

HTML Decimal:

<p>HTML decimal: &#38551;</p>  <!-- Display: 隗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9697;</p>  <!-- Display: 隗 -->

URL Encoding:

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

Encodings

MD5:

6a50488957256e19c62b423a903712a2

SHA1:

6c905860d74f3dfef096ace581684223e8a0a5b8

Base64:

6ZqX