Unicode Finder

"儲" U+5132(CJK UNIFIED IDEOGRAPH-5132)

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

Programming

C
\u5132
JavaScript
\u5132
Java
\u5132
Json
\u5132
Python
\u5132
Perl
\x{5132}
PHP
\x{5132}
Ruby
\u{5132}
Rust
\u{5132}
Go
\u5132

Web

CSS
\005132
HtmlDecimal
儲
HtmlHexadecimal
儲
Url
%E5%84%B2

Code

MD5
924543a3e1cfe053e0794ab5f6215c42
Sha1
2e94452a36ad52c3915d33b1d776240b892cbe61
Base64
5YSy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5132';
console.log(char);  // Output: 儲

Java:

char c = '\u5132';
System.out.println(c);  // Output: 儲

JSON:

{"text": "\u5132"}  // Value: 儲

Python:

char = '\u5132'
print(char)  # Output: 儲

Perl:

my $char = "\x{5132}";
print $char;  # Output: 儲

PHP:

$char = "\x{5132}";
echo $char;  // Output: 儲

Ruby:

char = "\u{5132}"
puts char  # Output: 儲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005132";  /* Display: 儲 */
}

HTML Decimal:

<p>HTML decimal: &#20786;</p>  <!-- Display: 儲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5132;</p>  <!-- Display: 儲 -->

URL Encoding:

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

Encodings

MD5:

924543a3e1cfe053e0794ab5f6215c42

SHA1:

2e94452a36ad52c3915d33b1d776240b892cbe61

Base64:

5YSy