Unicode Finder

"倉" U+5009(CJK UNIFIED IDEOGRAPH-5009)

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

Programming

C
\u5009
JavaScript
\u5009
Java
\u5009
Json
\u5009
Python
\u5009
Perl
\x{5009}
PHP
\x{5009}
Ruby
\u{5009}
Rust
\u{5009}
Go
\u5009

Web

CSS
\005009
HtmlDecimal
倉
HtmlHexadecimal
倉
Url
%E5%80%89

Code

MD5
37d9f1df9024270ead572bf0fef8d3b0
Sha1
caabedc353b4d831a907045e7086f4e08fa2d4f9
Base64
5YCJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5009';
console.log(char);  // Output: 倉

Java:

char c = '\u5009';
System.out.println(c);  // Output: 倉

JSON:

{"text": "\u5009"}  // Value: 倉

Python:

char = '\u5009'
print(char)  # Output: 倉

Perl:

my $char = "\x{5009}";
print $char;  # Output: 倉

PHP:

$char = "\x{5009}";
echo $char;  // Output: 倉

Ruby:

char = "\u{5009}"
puts char  # Output: 倉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005009";  /* Display: 倉 */
}

HTML Decimal:

<p>HTML decimal: &#20489;</p>  <!-- Display: 倉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5009;</p>  <!-- Display: 倉 -->

URL Encoding:

// 倉 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%89

Encodings

MD5:

37d9f1df9024270ead572bf0fef8d3b0

SHA1:

caabedc353b4d831a907045e7086f4e08fa2d4f9

Base64:

5YCJ