Unicode Finder

"閂" U+9582(CJK UNIFIED IDEOGRAPH-9582)

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

Programming

C
\u9582
JavaScript
\u9582
Java
\u9582
Json
\u9582
Python
\u9582
Perl
\x{9582}
PHP
\x{9582}
Ruby
\u{9582}
Rust
\u{9582}
Go
\u9582

Web

CSS
\009582
HtmlDecimal
閂
HtmlHexadecimal
閂
Url
%E9%96%82

Code

MD5
3c404de497c2a8bb0687e7c1bfe459e8
Sha1
6ab87b3f5aaa6811edb049727766268f8e463865
Base64
6ZaC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9582';
console.log(char);  // Output: 閂

Java:

char c = '\u9582';
System.out.println(c);  // Output: 閂

JSON:

{"text": "\u9582"}  // Value: 閂

Python:

char = '\u9582'
print(char)  # Output: 閂

Perl:

my $char = "\x{9582}";
print $char;  # Output: 閂

PHP:

$char = "\x{9582}";
echo $char;  // Output: 閂

Ruby:

char = "\u{9582}"
puts char  # Output: 閂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009582";  /* Display: 閂 */
}

HTML Decimal:

<p>HTML decimal: &#38274;</p>  <!-- Display: 閂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9582;</p>  <!-- Display: 閂 -->

URL Encoding:

// 閂 URL encoding
https://unicodefinder.com/search.php?query=%E9%96%82

Encodings

MD5:

3c404de497c2a8bb0687e7c1bfe459e8

SHA1:

6ab87b3f5aaa6811edb049727766268f8e463865

Base64:

6ZaC