Unicode Finder

"夲" U+5932(CJK UNIFIED IDEOGRAPH-5932)

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

Programming

C
\u5932
JavaScript
\u5932
Java
\u5932
Json
\u5932
Python
\u5932
Perl
\x{5932}
PHP
\x{5932}
Ruby
\u{5932}
Rust
\u{5932}
Go
\u5932

Web

CSS
\005932
HtmlDecimal
夲
HtmlHexadecimal
夲
Url
%E5%A4%B2

Code

MD5
267fdc3441b9f7a63af858ae8f1511f9
Sha1
a3a48615118c78c19261fecbafbb43adbefc9054
Base64
5aSy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5932';
console.log(char);  // Output: 夲

Java:

char c = '\u5932';
System.out.println(c);  // Output: 夲

JSON:

{"text": "\u5932"}  // Value: 夲

Python:

char = '\u5932'
print(char)  # Output: 夲

Perl:

my $char = "\x{5932}";
print $char;  # Output: 夲

PHP:

$char = "\x{5932}";
echo $char;  // Output: 夲

Ruby:

char = "\u{5932}"
puts char  # Output: 夲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005932";  /* Display: 夲 */
}

HTML Decimal:

<p>HTML decimal: &#22834;</p>  <!-- Display: 夲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5932;</p>  <!-- Display: 夲 -->

URL Encoding:

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

Encodings

MD5:

267fdc3441b9f7a63af858ae8f1511f9

SHA1:

a3a48615118c78c19261fecbafbb43adbefc9054

Base64:

5aSy