Unicode Finder

"撁" U+6481(CJK UNIFIED IDEOGRAPH-6481)

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

Programming

C
\u6481
JavaScript
\u6481
Java
\u6481
Json
\u6481
Python
\u6481
Perl
\x{6481}
PHP
\x{6481}
Ruby
\u{6481}
Rust
\u{6481}
Go
\u6481

Web

CSS
\006481
HtmlDecimal
撁
HtmlHexadecimal
撁
Url
%E6%92%81

Code

MD5
8b184e47e48095ec6482f6bf24e51eab
Sha1
d9e1326901d1c598314e45ebc0b4082b13112fc2
Base64
5pKB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6481';
console.log(char);  // Output: 撁

Java:

char c = '\u6481';
System.out.println(c);  // Output: 撁

JSON:

{"text": "\u6481"}  // Value: 撁

Python:

char = '\u6481'
print(char)  # Output: 撁

Perl:

my $char = "\x{6481}";
print $char;  # Output: 撁

PHP:

$char = "\x{6481}";
echo $char;  // Output: 撁

Ruby:

char = "\u{6481}"
puts char  # Output: 撁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006481";  /* Display: 撁 */
}

HTML Decimal:

<p>HTML decimal: &#25729;</p>  <!-- Display: 撁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6481;</p>  <!-- Display: 撁 -->

URL Encoding:

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

Encodings

MD5:

8b184e47e48095ec6482f6bf24e51eab

SHA1:

d9e1326901d1c598314e45ebc0b4082b13112fc2

Base64:

5pKB