Unicode Finder

"搯" U+642F(CJK UNIFIED IDEOGRAPH-642F)

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

Programming

C
\u642F
JavaScript
\u642F
Java
\u642F
Json
\u642F
Python
\u642F
Perl
\x{642F}
PHP
\x{642F}
Ruby
\u{642F}
Rust
\u{642F}
Go
\u642F

Web

CSS
\00642F
HtmlDecimal
搯
HtmlHexadecimal
搯
Url
%E6%90%AF

Code

MD5
9b7a96784d32067dfe54f1b75846a448
Sha1
1e170d1af9328bf6d750951b5114154adf0e5268
Base64
5pCv

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u642F';
console.log(char);  // Output: 搯

Java:

char c = '\u642F';
System.out.println(c);  // Output: 搯

JSON:

{"text": "\u642F"}  // Value: 搯

Python:

char = '\u642F'
print(char)  # Output: 搯

Perl:

my $char = "\x{642F}";
print $char;  # Output: 搯

PHP:

$char = "\x{642F}";
echo $char;  // Output: 搯

Ruby:

char = "\u{642F}"
puts char  # Output: 搯

Rust:

let c = '\u{642F}';
println!("{}", c);  // Output: 搯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00642F";  /* Display: 搯 */
}

HTML Decimal:

<p>HTML decimal: &#25647;</p>  <!-- Display: 搯 -->

HTML Hexadecimal:

<p>HTML hex: &#x642F;</p>  <!-- Display: 搯 -->

URL Encoding:

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

Encodings

MD5:

9b7a96784d32067dfe54f1b75846a448

SHA1:

1e170d1af9328bf6d750951b5114154adf0e5268

Base64:

5pCv