Unicode Finder

"敡" U+6561(CJK UNIFIED IDEOGRAPH-6561)

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

Programming

C
\u6561
JavaScript
\u6561
Java
\u6561
Json
\u6561
Python
\u6561
Perl
\x{6561}
PHP
\x{6561}
Ruby
\u{6561}
Rust
\u{6561}
Go
\u6561

Web

CSS
\006561
HtmlDecimal
敡
HtmlHexadecimal
敡
Url
%E6%95%A1

Code

MD5
683142157927f97f628dd9c72d4d0c80
Sha1
c3515c95fcc975387e846a8ed34a622871929535
Base64
5pWh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6561';
console.log(char);  // Output: 敡

Java:

char c = '\u6561';
System.out.println(c);  // Output: 敡

JSON:

{"text": "\u6561"}  // Value: 敡

Python:

char = '\u6561'
print(char)  # Output: 敡

Perl:

my $char = "\x{6561}";
print $char;  # Output: 敡

PHP:

$char = "\x{6561}";
echo $char;  // Output: 敡

Ruby:

char = "\u{6561}"
puts char  # Output: 敡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006561";  /* Display: 敡 */
}

HTML Decimal:

<p>HTML decimal: &#25953;</p>  <!-- Display: 敡 -->

HTML Hexadecimal:

<p>HTML hex: &#x6561;</p>  <!-- Display: 敡 -->

URL Encoding:

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

Encodings

MD5:

683142157927f97f628dd9c72d4d0c80

SHA1:

c3515c95fcc975387e846a8ed34a622871929535

Base64:

5pWh