Unicode Finder

"楉" U+6949(CJK UNIFIED IDEOGRAPH-6949)

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

Programming

C
\u6949
JavaScript
\u6949
Java
\u6949
Json
\u6949
Python
\u6949
Perl
\x{6949}
PHP
\x{6949}
Ruby
\u{6949}
Rust
\u{6949}
Go
\u6949

Web

CSS
\006949
HtmlDecimal
楉
HtmlHexadecimal
楉
Url
%E6%A5%89

Code

MD5
05750a4edde54a28d14a2fbe0993fd15
Sha1
83f910a28c1b49c46141d545b65d8fea2cd96aef
Base64
5qWJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6949';
console.log(char);  // Output: 楉

Java:

char c = '\u6949';
System.out.println(c);  // Output: 楉

JSON:

{"text": "\u6949"}  // Value: 楉

Python:

char = '\u6949'
print(char)  # Output: 楉

Perl:

my $char = "\x{6949}";
print $char;  # Output: 楉

PHP:

$char = "\x{6949}";
echo $char;  // Output: 楉

Ruby:

char = "\u{6949}"
puts char  # Output: 楉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006949";  /* Display: 楉 */
}

HTML Decimal:

<p>HTML decimal: &#26953;</p>  <!-- Display: 楉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6949;</p>  <!-- Display: 楉 -->

URL Encoding:

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

Encodings

MD5:

05750a4edde54a28d14a2fbe0993fd15

SHA1:

83f910a28c1b49c46141d545b65d8fea2cd96aef

Base64:

5qWJ