Unicode Finder

"妗" U+5997(CJK UNIFIED IDEOGRAPH-5997)

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

Programming

C
\u5997
JavaScript
\u5997
Java
\u5997
Json
\u5997
Python
\u5997
Perl
\x{5997}
PHP
\x{5997}
Ruby
\u{5997}
Rust
\u{5997}
Go
\u5997

Web

CSS
\005997
HtmlDecimal
妗
HtmlHexadecimal
妗
Url
%E5%A6%97

Code

MD5
03827680e65557b6e142dcb8b2ac9d2d
Sha1
d9d502fa20d54e9f0cdddb3d5973be857db66cbf
Base64
5aaX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5997';
console.log(char);  // Output: 妗

Java:

char c = '\u5997';
System.out.println(c);  // Output: 妗

JSON:

{"text": "\u5997"}  // Value: 妗

Python:

char = '\u5997'
print(char)  # Output: 妗

Perl:

my $char = "\x{5997}";
print $char;  # Output: 妗

PHP:

$char = "\x{5997}";
echo $char;  // Output: 妗

Ruby:

char = "\u{5997}"
puts char  # Output: 妗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005997";  /* Display: 妗 */
}

HTML Decimal:

<p>HTML decimal: &#22935;</p>  <!-- Display: 妗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5997;</p>  <!-- Display: 妗 -->

URL Encoding:

// 妗 URL encoding
https://unicodefinder.com/search.php?query=%E5%A6%97

Encodings

MD5:

03827680e65557b6e142dcb8b2ac9d2d

SHA1:

d9d502fa20d54e9f0cdddb3d5973be857db66cbf

Base64:

5aaX