Unicode Finder

"楣" U+6963(CJK UNIFIED IDEOGRAPH-6963)

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

Programming

C
\u6963
JavaScript
\u6963
Java
\u6963
Json
\u6963
Python
\u6963
Perl
\x{6963}
PHP
\x{6963}
Ruby
\u{6963}
Rust
\u{6963}
Go
\u6963

Web

CSS
\006963
HtmlDecimal
楣
HtmlHexadecimal
楣
Url
%E6%A5%A3

Code

MD5
b88cbd3628ec4290f0691a054a1be3b0
Sha1
3deffc2ef01d03fe7c580aa9453b3715c0488bff
Base64
5qWj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6963';
console.log(char);  // Output: 楣

Java:

char c = '\u6963';
System.out.println(c);  // Output: 楣

JSON:

{"text": "\u6963"}  // Value: 楣

Python:

char = '\u6963'
print(char)  # Output: 楣

Perl:

my $char = "\x{6963}";
print $char;  # Output: 楣

PHP:

$char = "\x{6963}";
echo $char;  // Output: 楣

Ruby:

char = "\u{6963}"
puts char  # Output: 楣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006963";  /* Display: 楣 */
}

HTML Decimal:

<p>HTML decimal: &#26979;</p>  <!-- Display: 楣 -->

HTML Hexadecimal:

<p>HTML hex: &#x6963;</p>  <!-- Display: 楣 -->

URL Encoding:

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

Encodings

MD5:

b88cbd3628ec4290f0691a054a1be3b0

SHA1:

3deffc2ef01d03fe7c580aa9453b3715c0488bff

Base64:

5qWj