Unicode Finder

"楤" U+6964(CJK UNIFIED IDEOGRAPH-6964)

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

Programming

C
\u6964
JavaScript
\u6964
Java
\u6964
Json
\u6964
Python
\u6964
Perl
\x{6964}
PHP
\x{6964}
Ruby
\u{6964}
Rust
\u{6964}
Go
\u6964

Web

CSS
\006964
HtmlDecimal
楤
HtmlHexadecimal
楤
Url
%E6%A5%A4

Code

MD5
8945aae10e22f8988f731a0c3f6dd262
Sha1
4114029a041bbf44bcf356d5f57c8b2038e2d8ab
Base64
5qWk

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6964';
console.log(char);  // Output: 楤

Java:

char c = '\u6964';
System.out.println(c);  // Output: 楤

JSON:

{"text": "\u6964"}  // Value: 楤

Python:

char = '\u6964'
print(char)  # Output: 楤

Perl:

my $char = "\x{6964}";
print $char;  # Output: 楤

PHP:

$char = "\x{6964}";
echo $char;  // Output: 楤

Ruby:

char = "\u{6964}"
puts char  # Output: 楤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006964";  /* Display: 楤 */
}

HTML Decimal:

<p>HTML decimal: &#26980;</p>  <!-- Display: 楤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6964;</p>  <!-- Display: 楤 -->

URL Encoding:

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

Encodings

MD5:

8945aae10e22f8988f731a0c3f6dd262

SHA1:

4114029a041bbf44bcf356d5f57c8b2038e2d8ab

Base64:

5qWk