Unicode Finder

"撀" U+6480(CJK UNIFIED IDEOGRAPH-6480)

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

Programming

C
\u6480
JavaScript
\u6480
Java
\u6480
Json
\u6480
Python
\u6480
Perl
\x{6480}
PHP
\x{6480}
Ruby
\u{6480}
Rust
\u{6480}
Go
\u6480

Web

CSS
\006480
HtmlDecimal
撀
HtmlHexadecimal
撀
Url
%E6%92%80

Code

MD5
3804a693d1f537ec64268a41608ca6b7
Sha1
b4f9555ad20df3ae4489da502f6fb19fd367c513
Base64
5pKA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6480';
console.log(char);  // Output: 撀

Java:

char c = '\u6480';
System.out.println(c);  // Output: 撀

JSON:

{"text": "\u6480"}  // Value: 撀

Python:

char = '\u6480'
print(char)  # Output: 撀

Perl:

my $char = "\x{6480}";
print $char;  # Output: 撀

PHP:

$char = "\x{6480}";
echo $char;  // Output: 撀

Ruby:

char = "\u{6480}"
puts char  # Output: 撀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006480";  /* Display: 撀 */
}

HTML Decimal:

<p>HTML decimal: &#25728;</p>  <!-- Display: 撀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6480;</p>  <!-- Display: 撀 -->

URL Encoding:

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

Encodings

MD5:

3804a693d1f537ec64268a41608ca6b7

SHA1:

b4f9555ad20df3ae4489da502f6fb19fd367c513

Base64:

5pKA