Unicode Finder

"敀" U+6540(CJK UNIFIED IDEOGRAPH-6540)

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

Programming

C
\u6540
JavaScript
\u6540
Java
\u6540
Json
\u6540
Python
\u6540
Perl
\x{6540}
PHP
\x{6540}
Ruby
\u{6540}
Rust
\u{6540}
Go
\u6540

Web

CSS
\006540
HtmlDecimal
敀
HtmlHexadecimal
敀
Url
%E6%95%80

Code

MD5
5e1843388ae1a27c994911303dba7ad6
Sha1
1cb1c830231ed11c631e4620235ab1e7237263c0
Base64
5pWA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6540';
console.log(char);  // Output: 敀

Java:

char c = '\u6540';
System.out.println(c);  // Output: 敀

JSON:

{"text": "\u6540"}  // Value: 敀

Python:

char = '\u6540'
print(char)  # Output: 敀

Perl:

my $char = "\x{6540}";
print $char;  # Output: 敀

PHP:

$char = "\x{6540}";
echo $char;  // Output: 敀

Ruby:

char = "\u{6540}"
puts char  # Output: 敀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006540";  /* Display: 敀 */
}

HTML Decimal:

<p>HTML decimal: &#25920;</p>  <!-- Display: 敀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6540;</p>  <!-- Display: 敀 -->

URL Encoding:

// 敀 URL encoding
https://unicodefinder.com/search.php?query=%E6%95%80

Encodings

MD5:

5e1843388ae1a27c994911303dba7ad6

SHA1:

1cb1c830231ed11c631e4620235ab1e7237263c0

Base64:

5pWA