Unicode Finder

"椲" U+6932(CJK UNIFIED IDEOGRAPH-6932)

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

Programming

C
\u6932
JavaScript
\u6932
Java
\u6932
Json
\u6932
Python
\u6932
Perl
\x{6932}
PHP
\x{6932}
Ruby
\u{6932}
Rust
\u{6932}
Go
\u6932

Web

CSS
\006932
HtmlDecimal
椲
HtmlHexadecimal
椲
Url
%E6%A4%B2

Code

MD5
07e38563062f3c7c9723b324c6752277
Sha1
5f5e608d23f9510bc83d26c5cef60455711cb236
Base64
5qSy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6932';
console.log(char);  // Output: 椲

Java:

char c = '\u6932';
System.out.println(c);  // Output: 椲

JSON:

{"text": "\u6932"}  // Value: 椲

Python:

char = '\u6932'
print(char)  # Output: 椲

Perl:

my $char = "\x{6932}";
print $char;  # Output: 椲

PHP:

$char = "\x{6932}";
echo $char;  // Output: 椲

Ruby:

char = "\u{6932}"
puts char  # Output: 椲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006932";  /* Display: 椲 */
}

HTML Decimal:

<p>HTML decimal: &#26930;</p>  <!-- Display: 椲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6932;</p>  <!-- Display: 椲 -->

URL Encoding:

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

Encodings

MD5:

07e38563062f3c7c9723b324c6752277

SHA1:

5f5e608d23f9510bc83d26c5cef60455711cb236

Base64:

5qSy