Unicode Finder

"褲" U+8932(CJK UNIFIED IDEOGRAPH-8932)

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

Programming

C
\u8932
JavaScript
\u8932
Java
\u8932
Json
\u8932
Python
\u8932
Perl
\x{8932}
PHP
\x{8932}
Ruby
\u{8932}
Rust
\u{8932}
Go
\u8932

Web

CSS
\008932
HtmlDecimal
褲
HtmlHexadecimal
褲
Url
%E8%A4%B2

Code

MD5
ed8dd006e8cda77ded23b22b0bef8ee0
Sha1
66c790c60bf7bdf34eac64503556776bffca6fb2
Base64
6KSy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8932';
console.log(char);  // Output: 褲

Java:

char c = '\u8932';
System.out.println(c);  // Output: 褲

JSON:

{"text": "\u8932"}  // Value: 褲

Python:

char = '\u8932'
print(char)  # Output: 褲

Perl:

my $char = "\x{8932}";
print $char;  # Output: 褲

PHP:

$char = "\x{8932}";
echo $char;  // Output: 褲

Ruby:

char = "\u{8932}"
puts char  # Output: 褲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008932";  /* Display: 褲 */
}

HTML Decimal:

<p>HTML decimal: &#35122;</p>  <!-- Display: 褲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8932;</p>  <!-- Display: 褲 -->

URL Encoding:

// 褲 URL encoding
https://unicodefinder.com/search.php?query=%E8%A4%B2

Encodings

MD5:

ed8dd006e8cda77ded23b22b0bef8ee0

SHA1:

66c790c60bf7bdf34eac64503556776bffca6fb2

Base64:

6KSy