Unicode Finder

"杁" U+6741(CJK UNIFIED IDEOGRAPH-6741)

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

Programming

C
\u6741
JavaScript
\u6741
Java
\u6741
Json
\u6741
Python
\u6741
Perl
\x{6741}
PHP
\x{6741}
Ruby
\u{6741}
Rust
\u{6741}
Go
\u6741

Web

CSS
\006741
HtmlDecimal
杁
HtmlHexadecimal
杁
Url
%E6%9D%81

Code

MD5
1a4b50e2e4b03df409328657e02125d4
Sha1
51c64a0144713ad5f670ffed018e15020e3a1f68
Base64
5p2B

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6741';
console.log(char);  // Output: 杁

Java:

char c = '\u6741';
System.out.println(c);  // Output: 杁

JSON:

{"text": "\u6741"}  // Value: 杁

Python:

char = '\u6741'
print(char)  # Output: 杁

Perl:

my $char = "\x{6741}";
print $char;  # Output: 杁

PHP:

$char = "\x{6741}";
echo $char;  // Output: 杁

Ruby:

char = "\u{6741}"
puts char  # Output: 杁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006741";  /* Display: 杁 */
}

HTML Decimal:

<p>HTML decimal: &#26433;</p>  <!-- Display: 杁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6741;</p>  <!-- Display: 杁 -->

URL Encoding:

// 杁 URL encoding
https://unicodefinder.com/search.php?query=%E6%9D%81

Encodings

MD5:

1a4b50e2e4b03df409328657e02125d4

SHA1:

51c64a0144713ad5f670ffed018e15020e3a1f68

Base64:

5p2B