Unicode Finder

"昢" U+6622(CJK UNIFIED IDEOGRAPH-6622)

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

Programming

C
\u6622
JavaScript
\u6622
Java
\u6622
Json
\u6622
Python
\u6622
Perl
\x{6622}
PHP
\x{6622}
Ruby
\u{6622}
Rust
\u{6622}
Go
\u6622

Web

CSS
\006622
HtmlDecimal
昢
HtmlHexadecimal
昢
Url
%E6%98%A2

Code

MD5
c74213b4bbb6e3fe5c41164262abd8d5
Sha1
ab95bc5ac1d77ec1e107a6fde6edbc245d4dacf0
Base64
5pii

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6622';
console.log(char);  // Output: 昢

Java:

char c = '\u6622';
System.out.println(c);  // Output: 昢

JSON:

{"text": "\u6622"}  // Value: 昢

Python:

char = '\u6622'
print(char)  # Output: 昢

Perl:

my $char = "\x{6622}";
print $char;  # Output: 昢

PHP:

$char = "\x{6622}";
echo $char;  // Output: 昢

Ruby:

char = "\u{6622}"
puts char  # Output: 昢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006622";  /* Display: 昢 */
}

HTML Decimal:

<p>HTML decimal: &#26146;</p>  <!-- Display: 昢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6622;</p>  <!-- Display: 昢 -->

URL Encoding:

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

Encodings

MD5:

c74213b4bbb6e3fe5c41164262abd8d5

SHA1:

ab95bc5ac1d77ec1e107a6fde6edbc245d4dacf0

Base64:

5pii