Unicode Finder

"搿" U+643F(CJK UNIFIED IDEOGRAPH-643F)

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

Programming

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

Web

CSS
\00643F
HtmlDecimal
搿
HtmlHexadecimal
搿
Url
%E6%90%BF

Code

MD5
274f4ae6f1eb59ec0213cafc16baacde
Sha1
c031fbeb3fb2e86237a8d70e9355620f70cb9773
Base64
5pC/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u643F';
console.log(char);  // Output: 搿

Java:

char c = '\u643F';
System.out.println(c);  // Output: 搿

JSON:

{"text": "\u643F"}  // Value: 搿

Python:

char = '\u643F'
print(char)  # Output: 搿

Perl:

my $char = "\x{643F}";
print $char;  # Output: 搿

PHP:

$char = "\x{643F}";
echo $char;  // Output: 搿

Ruby:

char = "\u{643F}"
puts char  # Output: 搿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25663;</p>  <!-- Display: 搿 -->

HTML Hexadecimal:

<p>HTML hex: &#x643F;</p>  <!-- Display: 搿 -->

URL Encoding:

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

Encodings

MD5:

274f4ae6f1eb59ec0213cafc16baacde

SHA1:

c031fbeb3fb2e86237a8d70e9355620f70cb9773

Base64:

5pC/