Unicode Finder

"摝" U+645D(CJK UNIFIED IDEOGRAPH-645D)

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

Programming

C
\u645D
JavaScript
\u645D
Java
\u645D
Json
\u645D
Python
\u645D
Perl
\x{645D}
PHP
\x{645D}
Ruby
\u{645D}
Rust
\u{645D}
Go
\u645D

Web

CSS
\00645D
HtmlDecimal
摝
HtmlHexadecimal
摝
Url
%E6%91%9D

Code

MD5
35a79a4d9da80fcc74321f0330e86757
Sha1
3647d55161ea2e1fafe83bbd77a6153112e85c18
Base64
5pGd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u645D';
console.log(char);  // Output: 摝

Java:

char c = '\u645D';
System.out.println(c);  // Output: 摝

JSON:

{"text": "\u645D"}  // Value: 摝

Python:

char = '\u645D'
print(char)  # Output: 摝

Perl:

my $char = "\x{645D}";
print $char;  # Output: 摝

PHP:

$char = "\x{645D}";
echo $char;  // Output: 摝

Ruby:

char = "\u{645D}"
puts char  # Output: 摝

Rust:

let c = '\u{645D}';
println!("{}", c);  // Output: 摝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00645D";  /* Display: 摝 */
}

HTML Decimal:

<p>HTML decimal: &#25693;</p>  <!-- Display: 摝 -->

HTML Hexadecimal:

<p>HTML hex: &#x645D;</p>  <!-- Display: 摝 -->

URL Encoding:

// 摝 URL encoding
https://unicodefinder.com/search.php?query=%E6%91%9D

Encodings

MD5:

35a79a4d9da80fcc74321f0330e86757

SHA1:

3647d55161ea2e1fafe83bbd77a6153112e85c18

Base64:

5pGd