Unicode Finder

"摕" U+6455(CJK UNIFIED IDEOGRAPH-6455)

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

Programming

C
\u6455
JavaScript
\u6455
Java
\u6455
Json
\u6455
Python
\u6455
Perl
\x{6455}
PHP
\x{6455}
Ruby
\u{6455}
Rust
\u{6455}
Go
\u6455

Web

CSS
\006455
HtmlDecimal
摕
HtmlHexadecimal
摕
Url
%E6%91%95

Code

MD5
02a42f52a725b34e6411a4b30a069060
Sha1
4f13d15f23d81565550ac86a9ff9c58ba70ac84f
Base64
5pGV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6455';
console.log(char);  // Output: 摕

Java:

char c = '\u6455';
System.out.println(c);  // Output: 摕

JSON:

{"text": "\u6455"}  // Value: 摕

Python:

char = '\u6455'
print(char)  # Output: 摕

Perl:

my $char = "\x{6455}";
print $char;  # Output: 摕

PHP:

$char = "\x{6455}";
echo $char;  // Output: 摕

Ruby:

char = "\u{6455}"
puts char  # Output: 摕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006455";  /* Display: 摕 */
}

HTML Decimal:

<p>HTML decimal: &#25685;</p>  <!-- Display: 摕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6455;</p>  <!-- Display: 摕 -->

URL Encoding:

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

Encodings

MD5:

02a42f52a725b34e6411a4b30a069060

SHA1:

4f13d15f23d81565550ac86a9ff9c58ba70ac84f

Base64:

5pGV