Unicode Finder

"挢" U+6322(CJK UNIFIED IDEOGRAPH-6322)

U+6322
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6322

Programming

C
\u6322
JavaScript
\u6322
Java
\u6322
Json
\u6322
Python
\u6322
Perl
\x{6322}
PHP
\x{6322}
Ruby
\u{6322}
Rust
\u{6322}
Go
\u6322

Web

CSS
\006322
HtmlDecimal
挢
HtmlHexadecimal
挢
Url
%E6%8C%A2

Code

MD5
05e4497ca634d2e227e13c8f395eabbe
Sha1
e225111ba36123f61347ef69bb1f92f8197ca469
Base64
5oyi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6322';
console.log(char);  // Output: 挢

Java:

char c = '\u6322';
System.out.println(c);  // Output: 挢

JSON:

{"text": "\u6322"}  // Value: 挢

Python:

char = '\u6322'
print(char)  # Output: 挢

Perl:

my $char = "\x{6322}";
print $char;  # Output: 挢

PHP:

$char = "\x{6322}";
echo $char;  // Output: 挢

Ruby:

char = "\u{6322}"
puts char  # Output: 挢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006322";  /* Display: 挢 */
}

HTML Decimal:

<p>HTML decimal: &#25378;</p>  <!-- Display: 挢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6322;</p>  <!-- Display: 挢 -->

URL Encoding:

// 挢 URL encoding
https://unicodefinder.com/search.php?query=%E6%8C%A2

Encodings

MD5:

05e4497ca634d2e227e13c8f395eabbe

SHA1:

e225111ba36123f61347ef69bb1f92f8197ca469

Base64:

5oyi