Unicode Finder

"摤" U+6464(CJK UNIFIED IDEOGRAPH-6464)

U+6464
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-6464

Programming

C
\u6464
JavaScript
\u6464
Java
\u6464
Json
\u6464
Python
\u6464
Perl
\x{6464}
PHP
\x{6464}
Ruby
\u{6464}
Rust
\u{6464}
Go
\u6464

Web

CSS
\006464
HtmlDecimal
摤
HtmlHexadecimal
摤
Url
%E6%91%A4

Code

MD5
4f81af98726dcddc2e547937108da734
Sha1
abe61d5c5a7b2dffa068961e52799804649ad10b
Base64
5pGk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6464';
console.log(char);  // Output: 摤

Java:

char c = '\u6464';
System.out.println(c);  // Output: 摤

JSON:

{"text": "\u6464"}  // Value: 摤

Python:

char = '\u6464'
print(char)  # Output: 摤

Perl:

my $char = "\x{6464}";
print $char;  # Output: 摤

PHP:

$char = "\x{6464}";
echo $char;  // Output: 摤

Ruby:

char = "\u{6464}"
puts char  # Output: 摤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006464";  /* Display: 摤 */
}

HTML Decimal:

<p>HTML decimal: &#25700;</p>  <!-- Display: 摤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6464;</p>  <!-- Display: 摤 -->

URL Encoding:

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

Encodings

MD5:

4f81af98726dcddc2e547937108da734

SHA1:

abe61d5c5a7b2dffa068961e52799804649ad10b

Base64:

5pGk