Unicode Finder

"襩" U+8969(CJK UNIFIED IDEOGRAPH-8969)

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

Programming

C
\u8969
JavaScript
\u8969
Java
\u8969
Json
\u8969
Python
\u8969
Perl
\x{8969}
PHP
\x{8969}
Ruby
\u{8969}
Rust
\u{8969}
Go
\u8969

Web

CSS
\008969
HtmlDecimal
襩
HtmlHexadecimal
襩
Url
%E8%A5%A9

Code

MD5
0415ac787db95501f454a53a1e7b3e06
Sha1
56802e8f179dc9d762a6a1827f58e942f52d8fe6
Base64
6KWp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8969';
console.log(char);  // Output: 襩

Java:

char c = '\u8969';
System.out.println(c);  // Output: 襩

JSON:

{"text": "\u8969"}  // Value: 襩

Python:

char = '\u8969'
print(char)  # Output: 襩

Perl:

my $char = "\x{8969}";
print $char;  # Output: 襩

PHP:

$char = "\x{8969}";
echo $char;  // Output: 襩

Ruby:

char = "\u{8969}"
puts char  # Output: 襩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008969";  /* Display: 襩 */
}

HTML Decimal:

<p>HTML decimal: &#35177;</p>  <!-- Display: 襩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8969;</p>  <!-- Display: 襩 -->

URL Encoding:

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

Encodings

MD5:

0415ac787db95501f454a53a1e7b3e06

SHA1:

56802e8f179dc9d762a6a1827f58e942f52d8fe6

Base64:

6KWp