Unicode Finder

"敢" U+6562(CJK UNIFIED IDEOGRAPH-6562)

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

Programming

C
\u6562
JavaScript
\u6562
Java
\u6562
Json
\u6562
Python
\u6562
Perl
\x{6562}
PHP
\x{6562}
Ruby
\u{6562}
Rust
\u{6562}
Go
\u6562

Web

CSS
\006562
HtmlDecimal
敢
HtmlHexadecimal
敢
Url
%E6%95%A2

Code

MD5
12892cf75f355e20f29a6c2ccd354e06
Sha1
51eff838b1fb89e177a131424180c83840cc02ab
Base64
5pWi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6562';
console.log(char);  // Output: 敢

Java:

char c = '\u6562';
System.out.println(c);  // Output: 敢

JSON:

{"text": "\u6562"}  // Value: 敢

Python:

char = '\u6562'
print(char)  # Output: 敢

Perl:

my $char = "\x{6562}";
print $char;  # Output: 敢

PHP:

$char = "\x{6562}";
echo $char;  // Output: 敢

Ruby:

char = "\u{6562}"
puts char  # Output: 敢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006562";  /* Display: 敢 */
}

HTML Decimal:

<p>HTML decimal: &#25954;</p>  <!-- Display: 敢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6562;</p>  <!-- Display: 敢 -->

URL Encoding:

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

Encodings

MD5:

12892cf75f355e20f29a6c2ccd354e06

SHA1:

51eff838b1fb89e177a131424180c83840cc02ab

Base64:

5pWi