Unicode Finder

"桧" U+6867(CJK UNIFIED IDEOGRAPH-6867)

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

Programming

C
\u6867
JavaScript
\u6867
Java
\u6867
Json
\u6867
Python
\u6867
Perl
\x{6867}
PHP
\x{6867}
Ruby
\u{6867}
Rust
\u{6867}
Go
\u6867

Web

CSS
\006867
HtmlDecimal
桧
HtmlHexadecimal
桧
Url
%E6%A1%A7

Code

MD5
5d6def5545e58389ec55b6b997f7c3c3
Sha1
d1b9c4cc679f40765ac8071dd6dbb3472d3397be
Base64
5qGn

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6867';
console.log(char);  // Output: 桧

Java:

char c = '\u6867';
System.out.println(c);  // Output: 桧

JSON:

{"text": "\u6867"}  // Value: 桧

Python:

char = '\u6867'
print(char)  # Output: 桧

Perl:

my $char = "\x{6867}";
print $char;  # Output: 桧

PHP:

$char = "\x{6867}";
echo $char;  // Output: 桧

Ruby:

char = "\u{6867}"
puts char  # Output: 桧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006867";  /* Display: 桧 */
}

HTML Decimal:

<p>HTML decimal: &#26727;</p>  <!-- Display: 桧 -->

HTML Hexadecimal:

<p>HTML hex: &#x6867;</p>  <!-- Display: 桧 -->

URL Encoding:

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

Encodings

MD5:

5d6def5545e58389ec55b6b997f7c3c3

SHA1:

d1b9c4cc679f40765ac8071dd6dbb3472d3397be

Base64:

5qGn