Unicode Finder

"楁" U+6941(CJK UNIFIED IDEOGRAPH-6941)

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

Programming

C
\u6941
JavaScript
\u6941
Java
\u6941
Json
\u6941
Python
\u6941
Perl
\x{6941}
PHP
\x{6941}
Ruby
\u{6941}
Rust
\u{6941}
Go
\u6941

Web

CSS
\006941
HtmlDecimal
楁
HtmlHexadecimal
楁
Url
%E6%A5%81

Code

MD5
7e37bc328d9dedf2da24ac7786169519
Sha1
f2b878b02675d1ab08c4972142ca0a33d39eb597
Base64
5qWB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6941';
console.log(char);  // Output: 楁

Java:

char c = '\u6941';
System.out.println(c);  // Output: 楁

JSON:

{"text": "\u6941"}  // Value: 楁

Python:

char = '\u6941'
print(char)  # Output: 楁

Perl:

my $char = "\x{6941}";
print $char;  # Output: 楁

PHP:

$char = "\x{6941}";
echo $char;  // Output: 楁

Ruby:

char = "\u{6941}"
puts char  # Output: 楁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006941";  /* Display: 楁 */
}

HTML Decimal:

<p>HTML decimal: &#26945;</p>  <!-- Display: 楁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6941;</p>  <!-- Display: 楁 -->

URL Encoding:

// 楁 URL encoding
https://unicodefinder.com/search.php?query=%E6%A5%81

Encodings

MD5:

7e37bc328d9dedf2da24ac7786169519

SHA1:

f2b878b02675d1ab08c4972142ca0a33d39eb597

Base64:

5qWB