Unicode Finder

"椠" U+6920(CJK UNIFIED IDEOGRAPH-6920)

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

Programming

C
\u6920
JavaScript
\u6920
Java
\u6920
Json
\u6920
Python
\u6920
Perl
\x{6920}
PHP
\x{6920}
Ruby
\u{6920}
Rust
\u{6920}
Go
\u6920

Web

CSS
\006920
HtmlDecimal
椠
HtmlHexadecimal
椠
Url
%E6%A4%A0

Code

MD5
27ae58ab1bdba765b6aa2dee423d6909
Sha1
5e44ccfd3d71391395641fc4f7b449afb9c7567b
Base64
5qSg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6920';
console.log(char);  // Output: 椠

Java:

char c = '\u6920';
System.out.println(c);  // Output: 椠

JSON:

{"text": "\u6920"}  // Value: 椠

Python:

char = '\u6920'
print(char)  # Output: 椠

Perl:

my $char = "\x{6920}";
print $char;  # Output: 椠

PHP:

$char = "\x{6920}";
echo $char;  // Output: 椠

Ruby:

char = "\u{6920}"
puts char  # Output: 椠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006920";  /* Display: 椠 */
}

HTML Decimal:

<p>HTML decimal: &#26912;</p>  <!-- Display: 椠 -->

HTML Hexadecimal:

<p>HTML hex: &#x6920;</p>  <!-- Display: 椠 -->

URL Encoding:

// 椠 URL encoding
https://unicodefinder.com/search.php?query=%E6%A4%A0

Encodings

MD5:

27ae58ab1bdba765b6aa2dee423d6909

SHA1:

5e44ccfd3d71391395641fc4f7b449afb9c7567b

Base64:

5qSg