Unicode Finder

"搥" U+6425(CJK UNIFIED IDEOGRAPH-6425)

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

Programming

C
\u6425
JavaScript
\u6425
Java
\u6425
Json
\u6425
Python
\u6425
Perl
\x{6425}
PHP
\x{6425}
Ruby
\u{6425}
Rust
\u{6425}
Go
\u6425

Web

CSS
\006425
HtmlDecimal
搥
HtmlHexadecimal
搥
Url
%E6%90%A5

Code

MD5
6383760eb818bd385da2f13d029da322
Sha1
38affa2d81aa5a72381168265dbd3dc0cbf4c2de
Base64
5pCl

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6425';
console.log(char);  // Output: 搥

Java:

char c = '\u6425';
System.out.println(c);  // Output: 搥

JSON:

{"text": "\u6425"}  // Value: 搥

Python:

char = '\u6425'
print(char)  # Output: 搥

Perl:

my $char = "\x{6425}";
print $char;  # Output: 搥

PHP:

$char = "\x{6425}";
echo $char;  // Output: 搥

Ruby:

char = "\u{6425}"
puts char  # Output: 搥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006425";  /* Display: 搥 */
}

HTML Decimal:

<p>HTML decimal: &#25637;</p>  <!-- Display: 搥 -->

HTML Hexadecimal:

<p>HTML hex: &#x6425;</p>  <!-- Display: 搥 -->

URL Encoding:

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

Encodings

MD5:

6383760eb818bd385da2f13d029da322

SHA1:

38affa2d81aa5a72381168265dbd3dc0cbf4c2de

Base64:

5pCl