Unicode Finder

"搤" U+6424(CJK UNIFIED IDEOGRAPH-6424)

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

Programming

C
\u6424
JavaScript
\u6424
Java
\u6424
Json
\u6424
Python
\u6424
Perl
\x{6424}
PHP
\x{6424}
Ruby
\u{6424}
Rust
\u{6424}
Go
\u6424

Web

CSS
\006424
HtmlDecimal
搤
HtmlHexadecimal
搤
Url
%E6%90%A4

Code

MD5
d8d3d26701a079376508bf361346fd7f
Sha1
9d24ecf0443717f3ec5eeec05dec06e3b1f42068
Base64
5pCk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6424';
console.log(char);  // Output: 搤

Java:

char c = '\u6424';
System.out.println(c);  // Output: 搤

JSON:

{"text": "\u6424"}  // Value: 搤

Python:

char = '\u6424'
print(char)  # Output: 搤

Perl:

my $char = "\x{6424}";
print $char;  # Output: 搤

PHP:

$char = "\x{6424}";
echo $char;  // Output: 搤

Ruby:

char = "\u{6424}"
puts char  # Output: 搤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006424";  /* Display: 搤 */
}

HTML Decimal:

<p>HTML decimal: &#25636;</p>  <!-- Display: 搤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6424;</p>  <!-- Display: 搤 -->

URL Encoding:

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

Encodings

MD5:

d8d3d26701a079376508bf361346fd7f

SHA1:

9d24ecf0443717f3ec5eeec05dec06e3b1f42068

Base64:

5pCk