Unicode Finder

"嫗" U+5AD7(CJK UNIFIED IDEOGRAPH-5AD7)

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

Programming

C
\u5AD7
JavaScript
\u5AD7
Java
\u5AD7
Json
\u5AD7
Python
\u5AD7
Perl
\x{5AD7}
PHP
\x{5AD7}
Ruby
\u{5AD7}
Rust
\u{5AD7}
Go
\u5AD7

Web

CSS
\005AD7
HtmlDecimal
嫗
HtmlHexadecimal
嫗
Url
%E5%AB%97

Code

MD5
5e76e4a3b08cfd2d485435a591401e75
Sha1
4ef3805f352dd739465ce6d9e85bd2b45fa3ce17
Base64
5auX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5AD7';
console.log(char);  // Output: 嫗

Java:

char c = '\u5AD7';
System.out.println(c);  // Output: 嫗

JSON:

{"text": "\u5AD7"}  // Value: 嫗

Python:

char = '\u5AD7'
print(char)  # Output: 嫗

Perl:

my $char = "\x{5AD7}";
print $char;  # Output: 嫗

PHP:

$char = "\x{5AD7}";
echo $char;  // Output: 嫗

Ruby:

char = "\u{5AD7}"
puts char  # Output: 嫗

Rust:

let c = '\u{5AD7}';
println!("{}", c);  // Output: 嫗

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005AD7";  /* Display: 嫗 */
}

HTML Decimal:

<p>HTML decimal: &#23255;</p>  <!-- Display: 嫗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5AD7;</p>  <!-- Display: 嫗 -->

URL Encoding:

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

Encodings

MD5:

5e76e4a3b08cfd2d485435a591401e75

SHA1:

4ef3805f352dd739465ce6d9e85bd2b45fa3ce17

Base64:

5auX