Unicode Finder

"挡" U+6321(CJK UNIFIED IDEOGRAPH-6321)

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

Programming

C
\u6321
JavaScript
\u6321
Java
\u6321
Json
\u6321
Python
\u6321
Perl
\x{6321}
PHP
\x{6321}
Ruby
\u{6321}
Rust
\u{6321}
Go
\u6321

Web

CSS
\006321
HtmlDecimal
挡
HtmlHexadecimal
挡
Url
%E6%8C%A1

Code

MD5
2a3df8b7f0b4f5a756bb22261ed4ebf6
Sha1
854ce48b1272239e857fa3f259328de6f62d6cd7
Base64
5oyh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6321';
console.log(char);  // Output: 挡

Java:

char c = '\u6321';
System.out.println(c);  // Output: 挡

JSON:

{"text": "\u6321"}  // Value: 挡

Python:

char = '\u6321'
print(char)  # Output: 挡

Perl:

my $char = "\x{6321}";
print $char;  # Output: 挡

PHP:

$char = "\x{6321}";
echo $char;  // Output: 挡

Ruby:

char = "\u{6321}"
puts char  # Output: 挡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006321";  /* Display: 挡 */
}

HTML Decimal:

<p>HTML decimal: &#25377;</p>  <!-- Display: 挡 -->

HTML Hexadecimal:

<p>HTML hex: &#x6321;</p>  <!-- Display: 挡 -->

URL Encoding:

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

Encodings

MD5:

2a3df8b7f0b4f5a756bb22261ed4ebf6

SHA1:

854ce48b1272239e857fa3f259328de6f62d6cd7

Base64:

5oyh