Unicode Finder

"椧" U+6927(CJK UNIFIED IDEOGRAPH-6927)

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

Programming

C
\u6927
JavaScript
\u6927
Java
\u6927
Json
\u6927
Python
\u6927
Perl
\x{6927}
PHP
\x{6927}
Ruby
\u{6927}
Rust
\u{6927}
Go
\u6927

Web

CSS
\006927
HtmlDecimal
椧
HtmlHexadecimal
椧
Url
%E6%A4%A7

Code

MD5
47ad0a1c79620d1a3ceed75289dc81a2
Sha1
511d27ec24ce9e73fedf83304c5c262c26ffc9de
Base64
5qSn

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6927';
console.log(char);  // Output: 椧

Java:

char c = '\u6927';
System.out.println(c);  // Output: 椧

JSON:

{"text": "\u6927"}  // Value: 椧

Python:

char = '\u6927'
print(char)  # Output: 椧

Perl:

my $char = "\x{6927}";
print $char;  # Output: 椧

PHP:

$char = "\x{6927}";
echo $char;  // Output: 椧

Ruby:

char = "\u{6927}"
puts char  # Output: 椧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006927";  /* Display: 椧 */
}

HTML Decimal:

<p>HTML decimal: &#26919;</p>  <!-- Display: 椧 -->

HTML Hexadecimal:

<p>HTML hex: &#x6927;</p>  <!-- Display: 椧 -->

URL Encoding:

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

Encodings

MD5:

47ad0a1c79620d1a3ceed75289dc81a2

SHA1:

511d27ec24ce9e73fedf83304c5c262c26ffc9de

Base64:

5qSn