Unicode Finder

"阢" U+9622(CJK UNIFIED IDEOGRAPH-9622)

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

Programming

C
\u9622
JavaScript
\u9622
Java
\u9622
Json
\u9622
Python
\u9622
Perl
\x{9622}
PHP
\x{9622}
Ruby
\u{9622}
Rust
\u{9622}
Go
\u9622

Web

CSS
\009622
HtmlDecimal
阢
HtmlHexadecimal
阢
Url
%E9%98%A2

Code

MD5
d82a6ef8b132d3d6480d75603076c4c8
Sha1
6f92bdc49afd228ca9d9801253d681c80b378fc7
Base64
6Zii

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9622';
console.log(char);  // Output: 阢

Java:

char c = '\u9622';
System.out.println(c);  // Output: 阢

JSON:

{"text": "\u9622"}  // Value: 阢

Python:

char = '\u9622'
print(char)  # Output: 阢

Perl:

my $char = "\x{9622}";
print $char;  # Output: 阢

PHP:

$char = "\x{9622}";
echo $char;  // Output: 阢

Ruby:

char = "\u{9622}"
puts char  # Output: 阢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009622";  /* Display: 阢 */
}

HTML Decimal:

<p>HTML decimal: &#38434;</p>  <!-- Display: 阢 -->

HTML Hexadecimal:

<p>HTML hex: &#x9622;</p>  <!-- Display: 阢 -->

URL Encoding:

// 阢 URL encoding
https://unicodefinder.com/search.php?query=%E9%98%A2

Encodings

MD5:

d82a6ef8b132d3d6480d75603076c4c8

SHA1:

6f92bdc49afd228ca9d9801253d681c80b378fc7

Base64:

6Zii