Unicode Finder

"挨" U+6328(CJK UNIFIED IDEOGRAPH-6328)

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

Programming

C
\u6328
JavaScript
\u6328
Java
\u6328
Json
\u6328
Python
\u6328
Perl
\x{6328}
PHP
\x{6328}
Ruby
\u{6328}
Rust
\u{6328}
Go
\u6328

Web

CSS
\006328
HtmlDecimal
挨
HtmlHexadecimal
挨
Url
%E6%8C%A8

Code

MD5
68729a2e5690f496c81069186c84d670
Sha1
8d2c07b4645f911ceb8fb90f1ac698ce02e2934f
Base64
5oyo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6328';
console.log(char);  // Output: 挨

Java:

char c = '\u6328';
System.out.println(c);  // Output: 挨

JSON:

{"text": "\u6328"}  // Value: 挨

Python:

char = '\u6328'
print(char)  # Output: 挨

Perl:

my $char = "\x{6328}";
print $char;  # Output: 挨

PHP:

$char = "\x{6328}";
echo $char;  // Output: 挨

Ruby:

char = "\u{6328}"
puts char  # Output: 挨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006328";  /* Display: 挨 */
}

HTML Decimal:

<p>HTML decimal: &#25384;</p>  <!-- Display: 挨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6328;</p>  <!-- Display: 挨 -->

URL Encoding:

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

Encodings

MD5:

68729a2e5690f496c81069186c84d670

SHA1:

8d2c07b4645f911ceb8fb90f1ac698ce02e2934f

Base64:

5oyo