Unicode Finder

"積" U+7A4D(CJK UNIFIED IDEOGRAPH-7A4D)

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

Programming

C
\u7A4D
JavaScript
\u7A4D
Java
\u7A4D
Json
\u7A4D
Python
\u7A4D
Perl
\x{7A4D}
PHP
\x{7A4D}
Ruby
\u{7A4D}
Rust
\u{7A4D}
Go
\u7A4D

Web

CSS
\007A4D
HtmlDecimal
積
HtmlHexadecimal
積
Url
%E7%A9%8D

Code

MD5
0665224704aeffb1d615f5fe549eea78
Sha1
34ddea8d850366947d13e4ea3cde95d4d7acda6a
Base64
56mN

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A4D';
console.log(char);  // Output: 積

Java:

char c = '\u7A4D';
System.out.println(c);  // Output: 積

JSON:

{"text": "\u7A4D"}  // Value: 積

Python:

char = '\u7A4D'
print(char)  # Output: 積

Perl:

my $char = "\x{7A4D}";
print $char;  # Output: 積

PHP:

$char = "\x{7A4D}";
echo $char;  // Output: 積

Ruby:

char = "\u{7A4D}"
puts char  # Output: 積

Rust:

let c = '\u{7A4D}';
println!("{}", c);  // Output: 積

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007A4D";  /* Display: 積 */
}

HTML Decimal:

<p>HTML decimal: &#31309;</p>  <!-- Display: 積 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A4D;</p>  <!-- Display: 積 -->

URL Encoding:

// 積 URL encoding
https://unicodefinder.com/search.php?query=%E7%A9%8D

Encodings

MD5:

0665224704aeffb1d615f5fe549eea78

SHA1:

34ddea8d850366947d13e4ea3cde95d4d7acda6a

Base64:

56mN