Unicode Finder

"楲" U+6972(CJK UNIFIED IDEOGRAPH-6972)

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

Programming

C
\u6972
JavaScript
\u6972
Java
\u6972
Json
\u6972
Python
\u6972
Perl
\x{6972}
PHP
\x{6972}
Ruby
\u{6972}
Rust
\u{6972}
Go
\u6972

Web

CSS
\006972
HtmlDecimal
楲
HtmlHexadecimal
楲
Url
%E6%A5%B2

Code

MD5
7fb66c75054b7b8d6a9e3bde2ad6a2dc
Sha1
dbe0be274afbd0e66457e6b368f535883980c940
Base64
5qWy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6972';
console.log(char);  // Output: 楲

Java:

char c = '\u6972';
System.out.println(c);  // Output: 楲

JSON:

{"text": "\u6972"}  // Value: 楲

Python:

char = '\u6972'
print(char)  # Output: 楲

Perl:

my $char = "\x{6972}";
print $char;  # Output: 楲

PHP:

$char = "\x{6972}";
echo $char;  // Output: 楲

Ruby:

char = "\u{6972}"
puts char  # Output: 楲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006972";  /* Display: 楲 */
}

HTML Decimal:

<p>HTML decimal: &#26994;</p>  <!-- Display: 楲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6972;</p>  <!-- Display: 楲 -->

URL Encoding:

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

Encodings

MD5:

7fb66c75054b7b8d6a9e3bde2ad6a2dc

SHA1:

dbe0be274afbd0e66457e6b368f535883980c940

Base64:

5qWy