Unicode Finder

"各" U+5404(CJK UNIFIED IDEOGRAPH-5404)

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

Programming

C
\u5404
JavaScript
\u5404
Java
\u5404
Json
\u5404
Python
\u5404
Perl
\x{5404}
PHP
\x{5404}
Ruby
\u{5404}
Rust
\u{5404}
Go
\u5404

Web

CSS
\005404
HtmlDecimal
各
HtmlHexadecimal
各
Url
%E5%90%84

Code

MD5
ac46c3aa389fe262cc1dfb2b99768485
Sha1
4e0aab05912f75c44a833078577049fc9a302028
Base64
5ZCE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5404';
console.log(char);  // Output: 各

Java:

char c = '\u5404';
System.out.println(c);  // Output: 各

JSON:

{"text": "\u5404"}  // Value: 各

Python:

char = '\u5404'
print(char)  # Output: 各

Perl:

my $char = "\x{5404}";
print $char;  # Output: 各

PHP:

$char = "\x{5404}";
echo $char;  // Output: 各

Ruby:

char = "\u{5404}"
puts char  # Output: 各

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005404";  /* Display: 各 */
}

HTML Decimal:

<p>HTML decimal: &#21508;</p>  <!-- Display: 各 -->

HTML Hexadecimal:

<p>HTML hex: &#x5404;</p>  <!-- Display: 各 -->

URL Encoding:

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

Encodings

MD5:

ac46c3aa389fe262cc1dfb2b99768485

SHA1:

4e0aab05912f75c44a833078577049fc9a302028

Base64:

5ZCE