Unicode Finder

"搃" U+6403(CJK UNIFIED IDEOGRAPH-6403)

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

Programming

C
\u6403
JavaScript
\u6403
Java
\u6403
Json
\u6403
Python
\u6403
Perl
\x{6403}
PHP
\x{6403}
Ruby
\u{6403}
Rust
\u{6403}
Go
\u6403

Web

CSS
\006403
HtmlDecimal
搃
HtmlHexadecimal
搃
Url
%E6%90%83

Code

MD5
35b3f045c3ed0e92a5eb74f776666453
Sha1
76036566a02878eee91a481670136f6facf998bf
Base64
5pCD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6403';
console.log(char);  // Output: 搃

Java:

char c = '\u6403';
System.out.println(c);  // Output: 搃

JSON:

{"text": "\u6403"}  // Value: 搃

Python:

char = '\u6403'
print(char)  # Output: 搃

Perl:

my $char = "\x{6403}";
print $char;  # Output: 搃

PHP:

$char = "\x{6403}";
echo $char;  // Output: 搃

Ruby:

char = "\u{6403}"
puts char  # Output: 搃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006403";  /* Display: 搃 */
}

HTML Decimal:

<p>HTML decimal: &#25603;</p>  <!-- Display: 搃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6403;</p>  <!-- Display: 搃 -->

URL Encoding:

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

Encodings

MD5:

35b3f045c3ed0e92a5eb74f776666453

SHA1:

76036566a02878eee91a481670136f6facf998bf

Base64:

5pCD