Unicode Finder

"閭" U+95AD(CJK UNIFIED IDEOGRAPH-95AD)

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

Programming

C
\u95AD
JavaScript
\u95AD
Java
\u95AD
Json
\u95AD
Python
\u95AD
Perl
\x{95AD}
PHP
\x{95AD}
Ruby
\u{95AD}
Rust
\u{95AD}
Go
\u95AD

Web

CSS
\0095AD
HtmlDecimal
閭
HtmlHexadecimal
閭
Url
%E9%96%AD

Code

MD5
255a36d07496ea8bf5c06efc79ab926a
Sha1
246f3c727b65212af9a8a0c9a4304356df72ea50
Base64
6Zat

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95AD';
console.log(char);  // Output: 閭

Java:

char c = '\u95AD';
System.out.println(c);  // Output: 閭

JSON:

{"text": "\u95AD"}  // Value: 閭

Python:

char = '\u95AD'
print(char)  # Output: 閭

Perl:

my $char = "\x{95AD}";
print $char;  # Output: 閭

PHP:

$char = "\x{95AD}";
echo $char;  // Output: 閭

Ruby:

char = "\u{95AD}"
puts char  # Output: 閭

Rust:

let c = '\u{95AD}';
println!("{}", c);  // Output: 閭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0095AD";  /* Display: 閭 */
}

HTML Decimal:

<p>HTML decimal: &#38317;</p>  <!-- Display: 閭 -->

HTML Hexadecimal:

<p>HTML hex: &#x95AD;</p>  <!-- Display: 閭 -->

URL Encoding:

// 閭 URL encoding
https://unicodefinder.com/search.php?query=%E9%96%AD

Encodings

MD5:

255a36d07496ea8bf5c06efc79ab926a

SHA1:

246f3c727b65212af9a8a0c9a4304356df72ea50

Base64:

6Zat