Unicode Finder

"楗" U+6957(CJK UNIFIED IDEOGRAPH-6957)

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

Programming

C
\u6957
JavaScript
\u6957
Java
\u6957
Json
\u6957
Python
\u6957
Perl
\x{6957}
PHP
\x{6957}
Ruby
\u{6957}
Rust
\u{6957}
Go
\u6957

Web

CSS
\006957
HtmlDecimal
楗
HtmlHexadecimal
楗
Url
%E6%A5%97

Code

MD5
c555a591c688c65f674af3d66d8c8cd4
Sha1
1bd6021589bf09f6e3f180a763bddee6d5c56eac
Base64
5qWX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6957';
console.log(char);  // Output: 楗

Java:

char c = '\u6957';
System.out.println(c);  // Output: 楗

JSON:

{"text": "\u6957"}  // Value: 楗

Python:

char = '\u6957'
print(char)  # Output: 楗

Perl:

my $char = "\x{6957}";
print $char;  # Output: 楗

PHP:

$char = "\x{6957}";
echo $char;  // Output: 楗

Ruby:

char = "\u{6957}"
puts char  # Output: 楗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006957";  /* Display: 楗 */
}

HTML Decimal:

<p>HTML decimal: &#26967;</p>  <!-- Display: 楗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6957;</p>  <!-- Display: 楗 -->

URL Encoding:

// 楗 URL encoding
https://unicodefinder.com/search.php?query=%E6%A5%97

Encodings

MD5:

c555a591c688c65f674af3d66d8c8cd4

SHA1:

1bd6021589bf09f6e3f180a763bddee6d5c56eac

Base64:

5qWX