Unicode Finder

"楢" U+6962(CJK UNIFIED IDEOGRAPH-6962)

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

Programming

C
\u6962
JavaScript
\u6962
Java
\u6962
Json
\u6962
Python
\u6962
Perl
\x{6962}
PHP
\x{6962}
Ruby
\u{6962}
Rust
\u{6962}
Go
\u6962

Web

CSS
\006962
HtmlDecimal
楢
HtmlHexadecimal
楢
Url
%E6%A5%A2

Code

MD5
f147df9f59b38f36f6df25ef16369a92
Sha1
aa5affcbdab82e367fac738a4cab657118e6eba4
Base64
5qWi

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6962';
console.log(char);  // Output: 楢

Java:

char c = '\u6962';
System.out.println(c);  // Output: 楢

JSON:

{"text": "\u6962"}  // Value: 楢

Python:

char = '\u6962'
print(char)  # Output: 楢

Perl:

my $char = "\x{6962}";
print $char;  # Output: 楢

PHP:

$char = "\x{6962}";
echo $char;  // Output: 楢

Ruby:

char = "\u{6962}"
puts char  # Output: 楢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006962";  /* Display: 楢 */
}

HTML Decimal:

<p>HTML decimal: &#26978;</p>  <!-- Display: 楢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6962;</p>  <!-- Display: 楢 -->

URL Encoding:

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

Encodings

MD5:

f147df9f59b38f36f6df25ef16369a92

SHA1:

aa5affcbdab82e367fac738a4cab657118e6eba4

Base64:

5qWi