Unicode Finder

"桂" U+6842(CJK UNIFIED IDEOGRAPH-6842)

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

Programming

C
\u6842
JavaScript
\u6842
Java
\u6842
Json
\u6842
Python
\u6842
Perl
\x{6842}
PHP
\x{6842}
Ruby
\u{6842}
Rust
\u{6842}
Go
\u6842

Web

CSS
\006842
HtmlDecimal
桂
HtmlHexadecimal
桂
Url
%E6%A1%82

Code

MD5
386b7df337fc7ade8f1197f9a5648704
Sha1
b9a7f02ed92b1f991bef1e8081e91a722dd86448
Base64
5qGC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6842';
console.log(char);  // Output: 桂

Java:

char c = '\u6842';
System.out.println(c);  // Output: 桂

JSON:

{"text": "\u6842"}  // Value: 桂

Python:

char = '\u6842'
print(char)  # Output: 桂

Perl:

my $char = "\x{6842}";
print $char;  # Output: 桂

PHP:

$char = "\x{6842}";
echo $char;  // Output: 桂

Ruby:

char = "\u{6842}"
puts char  # Output: 桂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006842";  /* Display: 桂 */
}

HTML Decimal:

<p>HTML decimal: &#26690;</p>  <!-- Display: 桂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6842;</p>  <!-- Display: 桂 -->

URL Encoding:

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

Encodings

MD5:

386b7df337fc7ade8f1197f9a5648704

SHA1:

b9a7f02ed92b1f991bef1e8081e91a722dd86448

Base64:

5qGC