Unicode Finder

"楡" U+6961(CJK UNIFIED IDEOGRAPH-6961)

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

Programming

C
\u6961
JavaScript
\u6961
Java
\u6961
Json
\u6961
Python
\u6961
Perl
\x{6961}
PHP
\x{6961}
Ruby
\u{6961}
Rust
\u{6961}
Go
\u6961

Web

CSS
\006961
HtmlDecimal
楡
HtmlHexadecimal
楡
Url
%E6%A5%A1

Code

MD5
eb14bd8e486ccea1745b81c4457bb6f1
Sha1
9d90b3737827d069b1237e120af6fe3b25c722e9
Base64
5qWh

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6961';
console.log(char);  // Output: 楡

Java:

char c = '\u6961';
System.out.println(c);  // Output: 楡

JSON:

{"text": "\u6961"}  // Value: 楡

Python:

char = '\u6961'
print(char)  # Output: 楡

Perl:

my $char = "\x{6961}";
print $char;  # Output: 楡

PHP:

$char = "\x{6961}";
echo $char;  // Output: 楡

Ruby:

char = "\u{6961}"
puts char  # Output: 楡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006961";  /* Display: 楡 */
}

HTML Decimal:

<p>HTML decimal: &#26977;</p>  <!-- Display: 楡 -->

HTML Hexadecimal:

<p>HTML hex: &#x6961;</p>  <!-- Display: 楡 -->

URL Encoding:

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

Encodings

MD5:

eb14bd8e486ccea1745b81c4457bb6f1

SHA1:

9d90b3737827d069b1237e120af6fe3b25c722e9

Base64:

5qWh