Unicode Finder

"楦" U+6966(CJK UNIFIED IDEOGRAPH-6966)

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

Programming

C
\u6966
JavaScript
\u6966
Java
\u6966
Json
\u6966
Python
\u6966
Perl
\x{6966}
PHP
\x{6966}
Ruby
\u{6966}
Rust
\u{6966}
Go
\u6966

Web

CSS
\006966
HtmlDecimal
楦
HtmlHexadecimal
楦
Url
%E6%A5%A6

Code

MD5
4dcb65cefdbc2451d3421879c6e16c97
Sha1
79571c3a6002ae9d88c0f8e9c42b3ae99471f23d
Base64
5qWm

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6966';
console.log(char);  // Output: 楦

Java:

char c = '\u6966';
System.out.println(c);  // Output: 楦

JSON:

{"text": "\u6966"}  // Value: 楦

Python:

char = '\u6966'
print(char)  # Output: 楦

Perl:

my $char = "\x{6966}";
print $char;  # Output: 楦

PHP:

$char = "\x{6966}";
echo $char;  // Output: 楦

Ruby:

char = "\u{6966}"
puts char  # Output: 楦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006966";  /* Display: 楦 */
}

HTML Decimal:

<p>HTML decimal: &#26982;</p>  <!-- Display: 楦 -->

HTML Hexadecimal:

<p>HTML hex: &#x6966;</p>  <!-- Display: 楦 -->

URL Encoding:

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

Encodings

MD5:

4dcb65cefdbc2451d3421879c6e16c97

SHA1:

79571c3a6002ae9d88c0f8e9c42b3ae99471f23d

Base64:

5qWm