Unicode Finder

"敂" U+6542(CJK UNIFIED IDEOGRAPH-6542)

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

Programming

C
\u6542
JavaScript
\u6542
Java
\u6542
Json
\u6542
Python
\u6542
Perl
\x{6542}
PHP
\x{6542}
Ruby
\u{6542}
Rust
\u{6542}
Go
\u6542

Web

CSS
\006542
HtmlDecimal
敂
HtmlHexadecimal
敂
Url
%E6%95%82

Code

MD5
2fe988863686d239c6eb7e81136a20e1
Sha1
9f650d42df2ec3180ae4cbce1d5baaf7e20d94b4
Base64
5pWC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6542';
console.log(char);  // Output: 敂

Java:

char c = '\u6542';
System.out.println(c);  // Output: 敂

JSON:

{"text": "\u6542"}  // Value: 敂

Python:

char = '\u6542'
print(char)  # Output: 敂

Perl:

my $char = "\x{6542}";
print $char;  # Output: 敂

PHP:

$char = "\x{6542}";
echo $char;  // Output: 敂

Ruby:

char = "\u{6542}"
puts char  # Output: 敂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006542";  /* Display: 敂 */
}

HTML Decimal:

<p>HTML decimal: &#25922;</p>  <!-- Display: 敂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6542;</p>  <!-- Display: 敂 -->

URL Encoding:

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

Encodings

MD5:

2fe988863686d239c6eb7e81136a20e1

SHA1:

9f650d42df2ec3180ae4cbce1d5baaf7e20d94b4

Base64:

5pWC