Unicode Finder

"閫" U+95AB(CJK UNIFIED IDEOGRAPH-95AB)

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

Programming

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

Web

CSS
\0095AB
HtmlDecimal
閫
HtmlHexadecimal
閫
Url
%E9%96%AB

Code

MD5
727b88e2fc7e8cda2fd3b3e2663bfa44
Sha1
01e9c6a6e6c54c9de0fd5d0aa62842e87718a395
Base64
6Zar

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95AB';
console.log(char);  // Output: 閫

Java:

char c = '\u95AB';
System.out.println(c);  // Output: 閫

JSON:

{"text": "\u95AB"}  // Value: 閫

Python:

char = '\u95AB'
print(char)  # Output: 閫

Perl:

my $char = "\x{95AB}";
print $char;  # Output: 閫

PHP:

$char = "\x{95AB}";
echo $char;  // Output: 閫

Ruby:

char = "\u{95AB}"
puts char  # Output: 閫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38315;</p>  <!-- Display: 閫 -->

HTML Hexadecimal:

<p>HTML hex: &#x95AB;</p>  <!-- Display: 閫 -->

URL Encoding:

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

Encodings

MD5:

727b88e2fc7e8cda2fd3b3e2663bfa44

SHA1:

01e9c6a6e6c54c9de0fd5d0aa62842e87718a395

Base64:

6Zar