Unicode Finder

"档" U+6863(CJK UNIFIED IDEOGRAPH-6863)

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

Programming

C
\u6863
JavaScript
\u6863
Java
\u6863
Json
\u6863
Python
\u6863
Perl
\x{6863}
PHP
\x{6863}
Ruby
\u{6863}
Rust
\u{6863}
Go
\u6863

Web

CSS
\006863
HtmlDecimal
档
HtmlHexadecimal
档
Url
%E6%A1%A3

Code

MD5
7ce8d61c4a2b53493dd1bc01d157a8f5
Sha1
e41b05975c48929b6666eb1df4e849c25a677791
Base64
5qGj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6863';
console.log(char);  // Output: 档

Java:

char c = '\u6863';
System.out.println(c);  // Output: 档

JSON:

{"text": "\u6863"}  // Value: 档

Python:

char = '\u6863'
print(char)  # Output: 档

Perl:

my $char = "\x{6863}";
print $char;  # Output: 档

PHP:

$char = "\x{6863}";
echo $char;  // Output: 档

Ruby:

char = "\u{6863}"
puts char  # Output: 档

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006863";  /* Display: 档 */
}

HTML Decimal:

<p>HTML decimal: &#26723;</p>  <!-- Display: 档 -->

HTML Hexadecimal:

<p>HTML hex: &#x6863;</p>  <!-- Display: 档 -->

URL Encoding:

// 档 URL encoding
https://unicodefinder.com/search.php?query=%E6%A1%A3

Encodings

MD5:

7ce8d61c4a2b53493dd1bc01d157a8f5

SHA1:

e41b05975c48929b6666eb1df4e849c25a677791

Base64:

5qGj