Unicode Finder

"摣" U+6463(CJK UNIFIED IDEOGRAPH-6463)

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

Programming

C
\u6463
JavaScript
\u6463
Java
\u6463
Json
\u6463
Python
\u6463
Perl
\x{6463}
PHP
\x{6463}
Ruby
\u{6463}
Rust
\u{6463}
Go
\u6463

Web

CSS
\006463
HtmlDecimal
摣
HtmlHexadecimal
摣
Url
%E6%91%A3

Code

MD5
8b7979b09461313f194e5f2232689915
Sha1
a623a8ae010f3c8ea73677b2892c78de89fddd1e
Base64
5pGj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6463';
console.log(char);  // Output: 摣

Java:

char c = '\u6463';
System.out.println(c);  // Output: 摣

JSON:

{"text": "\u6463"}  // Value: 摣

Python:

char = '\u6463'
print(char)  # Output: 摣

Perl:

my $char = "\x{6463}";
print $char;  # Output: 摣

PHP:

$char = "\x{6463}";
echo $char;  // Output: 摣

Ruby:

char = "\u{6463}"
puts char  # Output: 摣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006463";  /* Display: 摣 */
}

HTML Decimal:

<p>HTML decimal: &#25699;</p>  <!-- Display: 摣 -->

HTML Hexadecimal:

<p>HTML hex: &#x6463;</p>  <!-- Display: 摣 -->

URL Encoding:

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

Encodings

MD5:

8b7979b09461313f194e5f2232689915

SHA1:

a623a8ae010f3c8ea73677b2892c78de89fddd1e

Base64:

5pGj