Unicode Finder

"襙" U+8959(CJK UNIFIED IDEOGRAPH-8959)

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

Programming

C
\u8959
JavaScript
\u8959
Java
\u8959
Json
\u8959
Python
\u8959
Perl
\x{8959}
PHP
\x{8959}
Ruby
\u{8959}
Rust
\u{8959}
Go
\u8959

Web

CSS
\008959
HtmlDecimal
襙
HtmlHexadecimal
襙
Url
%E8%A5%99

Code

MD5
ecbbef191698a57b27fc3e8ad86249d5
Sha1
ced532e06ceefb6f455285ebb718a49dff5fc707
Base64
6KWZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8959';
console.log(char);  // Output: 襙

Java:

char c = '\u8959';
System.out.println(c);  // Output: 襙

JSON:

{"text": "\u8959"}  // Value: 襙

Python:

char = '\u8959'
print(char)  # Output: 襙

Perl:

my $char = "\x{8959}";
print $char;  # Output: 襙

PHP:

$char = "\x{8959}";
echo $char;  // Output: 襙

Ruby:

char = "\u{8959}"
puts char  # Output: 襙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008959";  /* Display: 襙 */
}

HTML Decimal:

<p>HTML decimal: &#35161;</p>  <!-- Display: 襙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8959;</p>  <!-- Display: 襙 -->

URL Encoding:

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

Encodings

MD5:

ecbbef191698a57b27fc3e8ad86249d5

SHA1:

ced532e06ceefb6f455285ebb718a49dff5fc707

Base64:

6KWZ