Unicode Finder

"襑" U+8951(CJK UNIFIED IDEOGRAPH-8951)

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

Programming

C
\u8951
JavaScript
\u8951
Java
\u8951
Json
\u8951
Python
\u8951
Perl
\x{8951}
PHP
\x{8951}
Ruby
\u{8951}
Rust
\u{8951}
Go
\u8951

Web

CSS
\008951
HtmlDecimal
襑
HtmlHexadecimal
襑
Url
%E8%A5%91

Code

MD5
527bc4c105a17423e1c188efd798307e
Sha1
2221d46c45388de1eebb15ad553108894b90d955
Base64
6KWR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8951';
console.log(char);  // Output: 襑

Java:

char c = '\u8951';
System.out.println(c);  // Output: 襑

JSON:

{"text": "\u8951"}  // Value: 襑

Python:

char = '\u8951'
print(char)  # Output: 襑

Perl:

my $char = "\x{8951}";
print $char;  # Output: 襑

PHP:

$char = "\x{8951}";
echo $char;  // Output: 襑

Ruby:

char = "\u{8951}"
puts char  # Output: 襑

Rust:

let c = '\u{8951}';
println!("{}", c);  // Output: 襑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008951";  /* Display: 襑 */
}

HTML Decimal:

<p>HTML decimal: &#35153;</p>  <!-- Display: 襑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8951;</p>  <!-- Display: 襑 -->

URL Encoding:

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

Encodings

MD5:

527bc4c105a17423e1c188efd798307e

SHA1:

2221d46c45388de1eebb15ad553108894b90d955

Base64:

6KWR