Unicode Finder

"隫" U+96AB(CJK UNIFIED IDEOGRAPH-96AB)

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

Programming

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

Web

CSS
\0096AB
HtmlDecimal
隫
HtmlHexadecimal
隫
Url
%E9%9A%AB

Code

MD5
8db83b6d7c1174a7c7b60a4e48f3bd0e
Sha1
c3ff4c798fbc29f6f54516e729f36172e587e10d
Base64
6Zqr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u96AB';
console.log(char);  // Output: 隫

Java:

char c = '\u96AB';
System.out.println(c);  // Output: 隫

JSON:

{"text": "\u96AB"}  // Value: 隫

Python:

char = '\u96AB'
print(char)  # Output: 隫

Perl:

my $char = "\x{96AB}";
print $char;  # Output: 隫

PHP:

$char = "\x{96AB}";
echo $char;  // Output: 隫

Ruby:

char = "\u{96AB}"
puts char  # Output: 隫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38571;</p>  <!-- Display: 隫 -->

HTML Hexadecimal:

<p>HTML hex: &#x96AB;</p>  <!-- Display: 隫 -->

URL Encoding:

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

Encodings

MD5:

8db83b6d7c1174a7c7b60a4e48f3bd0e

SHA1:

c3ff4c798fbc29f6f54516e729f36172e587e10d

Base64:

6Zqr