Unicode Finder

"摎" U+644E(CJK UNIFIED IDEOGRAPH-644E)

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

Programming

C
\u644E
JavaScript
\u644E
Java
\u644E
Json
\u644E
Python
\u644E
Perl
\x{644E}
PHP
\x{644E}
Ruby
\u{644E}
Rust
\u{644E}
Go
\u644E

Web

CSS
\00644E
HtmlDecimal
摎
HtmlHexadecimal
摎
Url
%E6%91%8E

Code

MD5
15756236b2ef752cda1d84178fe1aa5e
Sha1
1d6b9ff53ccbc3f82ae4249d3a346fe687bdd78d
Base64
5pGO

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u644E';
console.log(char);  // Output: 摎

Java:

char c = '\u644E';
System.out.println(c);  // Output: 摎

JSON:

{"text": "\u644E"}  // Value: 摎

Python:

char = '\u644E'
print(char)  # Output: 摎

Perl:

my $char = "\x{644E}";
print $char;  # Output: 摎

PHP:

$char = "\x{644E}";
echo $char;  // Output: 摎

Ruby:

char = "\u{644E}"
puts char  # Output: 摎

Rust:

let c = '\u{644E}';
println!("{}", c);  // Output: 摎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00644E";  /* Display: 摎 */
}

HTML Decimal:

<p>HTML decimal: &#25678;</p>  <!-- Display: 摎 -->

HTML Hexadecimal:

<p>HTML hex: &#x644E;</p>  <!-- Display: 摎 -->

URL Encoding:

// 摎 URL encoding
https://unicodefinder.com/search.php?query=%E6%91%8E

Encodings

MD5:

15756236b2ef752cda1d84178fe1aa5e

SHA1:

1d6b9ff53ccbc3f82ae4249d3a346fe687bdd78d

Base64:

5pGO