Unicode Finder

"襒" U+8952(CJK UNIFIED IDEOGRAPH-8952)

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

Programming

C
\u8952
JavaScript
\u8952
Java
\u8952
Json
\u8952
Python
\u8952
Perl
\x{8952}
PHP
\x{8952}
Ruby
\u{8952}
Rust
\u{8952}
Go
\u8952

Web

CSS
\008952
HtmlDecimal
襒
HtmlHexadecimal
襒
Url
%E8%A5%92

Code

MD5
9afed1ce2ecbaaca8fde69c66d24d49b
Sha1
7acf9329709d01d8c0b6e0aea36aab08dff9af5e
Base64
6KWS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8952';
console.log(char);  // Output: 襒

Java:

char c = '\u8952';
System.out.println(c);  // Output: 襒

JSON:

{"text": "\u8952"}  // Value: 襒

Python:

char = '\u8952'
print(char)  # Output: 襒

Perl:

my $char = "\x{8952}";
print $char;  # Output: 襒

PHP:

$char = "\x{8952}";
echo $char;  // Output: 襒

Ruby:

char = "\u{8952}"
puts char  # Output: 襒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008952";  /* Display: 襒 */
}

HTML Decimal:

<p>HTML decimal: &#35154;</p>  <!-- Display: 襒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8952;</p>  <!-- Display: 襒 -->

URL Encoding:

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

Encodings

MD5:

9afed1ce2ecbaaca8fde69c66d24d49b

SHA1:

7acf9329709d01d8c0b6e0aea36aab08dff9af5e

Base64:

6KWS