Unicode Finder

"摁" U+6441(CJK UNIFIED IDEOGRAPH-6441)

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

Programming

C
\u6441
JavaScript
\u6441
Java
\u6441
Json
\u6441
Python
\u6441
Perl
\x{6441}
PHP
\x{6441}
Ruby
\u{6441}
Rust
\u{6441}
Go
\u6441

Web

CSS
\006441
HtmlDecimal
摁
HtmlHexadecimal
摁
Url
%E6%91%81

Code

MD5
40d2ff7483b7489ca2fbf2f85155ce49
Sha1
a5bd24d8bebfa8dbdccdcf48a85daa7285a0ae6b
Base64
5pGB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6441';
console.log(char);  // Output: 摁

Java:

char c = '\u6441';
System.out.println(c);  // Output: 摁

JSON:

{"text": "\u6441"}  // Value: 摁

Python:

char = '\u6441'
print(char)  # Output: 摁

Perl:

my $char = "\x{6441}";
print $char;  # Output: 摁

PHP:

$char = "\x{6441}";
echo $char;  // Output: 摁

Ruby:

char = "\u{6441}"
puts char  # Output: 摁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006441";  /* Display: 摁 */
}

HTML Decimal:

<p>HTML decimal: &#25665;</p>  <!-- Display: 摁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6441;</p>  <!-- Display: 摁 -->

URL Encoding:

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

Encodings

MD5:

40d2ff7483b7489ca2fbf2f85155ce49

SHA1:

a5bd24d8bebfa8dbdccdcf48a85daa7285a0ae6b

Base64:

5pGB