Unicode Finder

"撖" U+6496(CJK UNIFIED IDEOGRAPH-6496)

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

Programming

C
\u6496
JavaScript
\u6496
Java
\u6496
Json
\u6496
Python
\u6496
Perl
\x{6496}
PHP
\x{6496}
Ruby
\u{6496}
Rust
\u{6496}
Go
\u6496

Web

CSS
\006496
HtmlDecimal
撖
HtmlHexadecimal
撖
Url
%E6%92%96

Code

MD5
9a0b94a5c611d873a3270c30370c9ecd
Sha1
0f00cc1c89b11f72e20ee3c182c39521ae724640
Base64
5pKW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6496';
console.log(char);  // Output: 撖

Java:

char c = '\u6496';
System.out.println(c);  // Output: 撖

JSON:

{"text": "\u6496"}  // Value: 撖

Python:

char = '\u6496'
print(char)  # Output: 撖

Perl:

my $char = "\x{6496}";
print $char;  # Output: 撖

PHP:

$char = "\x{6496}";
echo $char;  // Output: 撖

Ruby:

char = "\u{6496}"
puts char  # Output: 撖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006496";  /* Display: 撖 */
}

HTML Decimal:

<p>HTML decimal: &#25750;</p>  <!-- Display: 撖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6496;</p>  <!-- Display: 撖 -->

URL Encoding:

// 撖 URL encoding
https://unicodefinder.com/search.php?query=%E6%92%96

Encodings

MD5:

9a0b94a5c611d873a3270c30370c9ecd

SHA1:

0f00cc1c89b11f72e20ee3c182c39521ae724640

Base64:

5pKW