Unicode Finder

"捶" U+6376(CJK UNIFIED IDEOGRAPH-6376)

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

Programming

C
\u6376
JavaScript
\u6376
Java
\u6376
Json
\u6376
Python
\u6376
Perl
\x{6376}
PHP
\x{6376}
Ruby
\u{6376}
Rust
\u{6376}
Go
\u6376

Web

CSS
\006376
HtmlDecimal
捶
HtmlHexadecimal
捶
Url
%E6%8D%B6

Code

MD5
0f1e8f803f5a17d81cdcda5794efc682
Sha1
22f1411d3e7c5afa1f4bd030cec68df4da501166
Base64
5o22

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6376';
console.log(char);  // Output: 捶

Java:

char c = '\u6376';
System.out.println(c);  // Output: 捶

JSON:

{"text": "\u6376"}  // Value: 捶

Python:

char = '\u6376'
print(char)  # Output: 捶

Perl:

my $char = "\x{6376}";
print $char;  # Output: 捶

PHP:

$char = "\x{6376}";
echo $char;  // Output: 捶

Ruby:

char = "\u{6376}"
puts char  # Output: 捶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006376";  /* Display: 捶 */
}

HTML Decimal:

<p>HTML decimal: &#25462;</p>  <!-- Display: 捶 -->

HTML Hexadecimal:

<p>HTML hex: &#x6376;</p>  <!-- Display: 捶 -->

URL Encoding:

// 捶 URL encoding
https://unicodefinder.com/search.php?query=%E6%8D%B6

Encodings

MD5:

0f1e8f803f5a17d81cdcda5794efc682

SHA1:

22f1411d3e7c5afa1f4bd030cec68df4da501166

Base64:

5o22