Unicode Finder

"椇" U+6907(CJK UNIFIED IDEOGRAPH-6907)

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

Programming

C
\u6907
JavaScript
\u6907
Java
\u6907
Json
\u6907
Python
\u6907
Perl
\x{6907}
PHP
\x{6907}
Ruby
\u{6907}
Rust
\u{6907}
Go
\u6907

Web

CSS
\006907
HtmlDecimal
椇
HtmlHexadecimal
椇
Url
%E6%A4%87

Code

MD5
ae38f13a70546a23abee1f0397aac58d
Sha1
b95aee7cbe2580f2fd90436c9b223febffd365a6
Base64
5qSH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6907';
console.log(char);  // Output: 椇

Java:

char c = '\u6907';
System.out.println(c);  // Output: 椇

JSON:

{"text": "\u6907"}  // Value: 椇

Python:

char = '\u6907'
print(char)  # Output: 椇

Perl:

my $char = "\x{6907}";
print $char;  # Output: 椇

PHP:

$char = "\x{6907}";
echo $char;  // Output: 椇

Ruby:

char = "\u{6907}"
puts char  # Output: 椇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006907";  /* Display: 椇 */
}

HTML Decimal:

<p>HTML decimal: &#26887;</p>  <!-- Display: 椇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6907;</p>  <!-- Display: 椇 -->

URL Encoding:

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

Encodings

MD5:

ae38f13a70546a23abee1f0397aac58d

SHA1:

b95aee7cbe2580f2fd90436c9b223febffd365a6

Base64:

5qSH