Unicode Finder

"襛" U+895B(CJK UNIFIED IDEOGRAPH-895B)

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

Programming

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

Web

CSS
\00895B
HtmlDecimal
襛
HtmlHexadecimal
襛
Url
%E8%A5%9B

Code

MD5
6751261c1e4dda307a5bcaf9adb8f99b
Sha1
4cfc7cd0084532d4668d56cf84924af614fd8350
Base64
6KWb

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u895B';
console.log(char);  // Output: 襛

Java:

char c = '\u895B';
System.out.println(c);  // Output: 襛

JSON:

{"text": "\u895B"}  // Value: 襛

Python:

char = '\u895B'
print(char)  # Output: 襛

Perl:

my $char = "\x{895B}";
print $char;  # Output: 襛

PHP:

$char = "\x{895B}";
echo $char;  // Output: 襛

Ruby:

char = "\u{895B}"
puts char  # Output: 襛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35163;</p>  <!-- Display: 襛 -->

HTML Hexadecimal:

<p>HTML hex: &#x895B;</p>  <!-- Display: 襛 -->

URL Encoding:

// 襛 URL encoding
https://unicodefinder.com/search.php?query=%E8%A5%9B

Encodings

MD5:

6751261c1e4dda307a5bcaf9adb8f99b

SHA1:

4cfc7cd0084532d4668d56cf84924af614fd8350

Base64:

6KWb