Unicode Finder

"昣" U+6623(CJK UNIFIED IDEOGRAPH-6623)

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

Programming

C
\u6623
JavaScript
\u6623
Java
\u6623
Json
\u6623
Python
\u6623
Perl
\x{6623}
PHP
\x{6623}
Ruby
\u{6623}
Rust
\u{6623}
Go
\u6623

Web

CSS
\006623
HtmlDecimal
昣
HtmlHexadecimal
昣
Url
%E6%98%A3

Code

MD5
2f4020e4732e70117687fd14b968e97b
Sha1
d3a605fdcf27d39eb3e8eef96e6bd12c8099cc03
Base64
5pij

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6623';
console.log(char);  // Output: 昣

Java:

char c = '\u6623';
System.out.println(c);  // Output: 昣

JSON:

{"text": "\u6623"}  // Value: 昣

Python:

char = '\u6623'
print(char)  # Output: 昣

Perl:

my $char = "\x{6623}";
print $char;  # Output: 昣

PHP:

$char = "\x{6623}";
echo $char;  // Output: 昣

Ruby:

char = "\u{6623}"
puts char  # Output: 昣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006623";  /* Display: 昣 */
}

HTML Decimal:

<p>HTML decimal: &#26147;</p>  <!-- Display: 昣 -->

HTML Hexadecimal:

<p>HTML hex: &#x6623;</p>  <!-- Display: 昣 -->

URL Encoding:

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

Encodings

MD5:

2f4020e4732e70117687fd14b968e97b

SHA1:

d3a605fdcf27d39eb3e8eef96e6bd12c8099cc03

Base64:

5pij