Unicode Finder

"貯" U+8CAF(CJK UNIFIED IDEOGRAPH-8CAF)

U+8CAF
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8CAF

Programming

C
\u8CAF
JavaScript
\u8CAF
Java
\u8CAF
Json
\u8CAF
Python
\u8CAF
Perl
\x{8CAF}
PHP
\x{8CAF}
Ruby
\u{8CAF}
Rust
\u{8CAF}
Go
\u8CAF

Web

CSS
\008CAF
HtmlDecimal
貯
HtmlHexadecimal
貯
Url
%E8%B2%AF

Code

MD5
3f024a9e7a9a1217bf025c362b2557af
Sha1
804c87b88900eff40ae065519148aa76b21710e5
Base64
6LKv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8CAF';
console.log(char);  // Output: 貯

Java:

char c = '\u8CAF';
System.out.println(c);  // Output: 貯

JSON:

{"text": "\u8CAF"}  // Value: 貯

Python:

char = '\u8CAF'
print(char)  # Output: 貯

Perl:

my $char = "\x{8CAF}";
print $char;  # Output: 貯

PHP:

$char = "\x{8CAF}";
echo $char;  // Output: 貯

Ruby:

char = "\u{8CAF}"
puts char  # Output: 貯

Rust:

let c = '\u{8CAF}';
println!("{}", c);  // Output: 貯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008CAF";  /* Display: 貯 */
}

HTML Decimal:

<p>HTML decimal: &#36015;</p>  <!-- Display: 貯 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CAF;</p>  <!-- Display: 貯 -->

URL Encoding:

// 貯 URL encoding
https://unicodefinder.com/search.php?query=%E8%B2%AF

Encodings

MD5:

3f024a9e7a9a1217bf025c362b2557af

SHA1:

804c87b88900eff40ae065519148aa76b21710e5

Base64:

6LKv