Unicode Finder

"敳" U+6573(CJK UNIFIED IDEOGRAPH-6573)

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

Programming

C
\u6573
JavaScript
\u6573
Java
\u6573
Json
\u6573
Python
\u6573
Perl
\x{6573}
PHP
\x{6573}
Ruby
\u{6573}
Rust
\u{6573}
Go
\u6573

Web

CSS
\006573
HtmlDecimal
敳
HtmlHexadecimal
敳
Url
%E6%95%B3

Code

MD5
8b3433685c5f4580547b6a41f45e2583
Sha1
148e7ec9ad03fddd910469533956a7f21dc49b81
Base64
5pWz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6573';
console.log(char);  // Output: 敳

Java:

char c = '\u6573';
System.out.println(c);  // Output: 敳

JSON:

{"text": "\u6573"}  // Value: 敳

Python:

char = '\u6573'
print(char)  # Output: 敳

Perl:

my $char = "\x{6573}";
print $char;  # Output: 敳

PHP:

$char = "\x{6573}";
echo $char;  // Output: 敳

Ruby:

char = "\u{6573}"
puts char  # Output: 敳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006573";  /* Display: 敳 */
}

HTML Decimal:

<p>HTML decimal: &#25971;</p>  <!-- Display: 敳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6573;</p>  <!-- Display: 敳 -->

URL Encoding:

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

Encodings

MD5:

8b3433685c5f4580547b6a41f45e2583

SHA1:

148e7ec9ad03fddd910469533956a7f21dc49b81

Base64:

5pWz