Unicode Finder

"敲" U+6572(CJK UNIFIED IDEOGRAPH-6572)

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

Programming

C
\u6572
JavaScript
\u6572
Java
\u6572
Json
\u6572
Python
\u6572
Perl
\x{6572}
PHP
\x{6572}
Ruby
\u{6572}
Rust
\u{6572}
Go
\u6572

Web

CSS
\006572
HtmlDecimal
敲
HtmlHexadecimal
敲
Url
%E6%95%B2

Code

MD5
05070e6fabc8d5b3327f662ed15c1dd2
Sha1
0a47372d991ddab8235d9f66e8076ef5e489976b
Base64
5pWy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6572';
console.log(char);  // Output: 敲

Java:

char c = '\u6572';
System.out.println(c);  // Output: 敲

JSON:

{"text": "\u6572"}  // Value: 敲

Python:

char = '\u6572'
print(char)  # Output: 敲

Perl:

my $char = "\x{6572}";
print $char;  # Output: 敲

PHP:

$char = "\x{6572}";
echo $char;  // Output: 敲

Ruby:

char = "\u{6572}"
puts char  # Output: 敲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006572";  /* Display: 敲 */
}

HTML Decimal:

<p>HTML decimal: &#25970;</p>  <!-- Display: 敲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6572;</p>  <!-- Display: 敲 -->

URL Encoding:

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

Encodings

MD5:

05070e6fabc8d5b3327f662ed15c1dd2

SHA1:

0a47372d991ddab8235d9f66e8076ef5e489976b

Base64:

5pWy