Unicode Finder

"襫" U+896B(CJK UNIFIED IDEOGRAPH-896B)

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

Programming

C
\u896B
JavaScript
\u896B
Java
\u896B
Json
\u896B
Python
\u896B
Perl
\x{896B}
PHP
\x{896B}
Ruby
\u{896B}
Rust
\u{896B}
Go
\u896B

Web

CSS
\00896B
HtmlDecimal
襫
HtmlHexadecimal
襫
Url
%E8%A5%AB

Code

MD5
7277a2d6c0c7e739602aa02ef2292288
Sha1
3a6228830fb61ccef8b10eaa8c4cd5952fdf4b24
Base64
6KWr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u896B';
console.log(char);  // Output: 襫

Java:

char c = '\u896B';
System.out.println(c);  // Output: 襫

JSON:

{"text": "\u896B"}  // Value: 襫

Python:

char = '\u896B'
print(char)  # Output: 襫

Perl:

my $char = "\x{896B}";
print $char;  # Output: 襫

PHP:

$char = "\x{896B}";
echo $char;  // Output: 襫

Ruby:

char = "\u{896B}"
puts char  # Output: 襫

Rust:

let c = '\u{896B}';
println!("{}", c);  // Output: 襫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00896B";  /* Display: 襫 */
}

HTML Decimal:

<p>HTML decimal: &#35179;</p>  <!-- Display: 襫 -->

HTML Hexadecimal:

<p>HTML hex: &#x896B;</p>  <!-- Display: 襫 -->

URL Encoding:

// 襫 URL encoding
https://unicodefinder.com/search.php?query=%E8%A5%AB

Encodings

MD5:

7277a2d6c0c7e739602aa02ef2292288

SHA1:

3a6228830fb61ccef8b10eaa8c4cd5952fdf4b24

Base64:

6KWr