Unicode Finder

"穫" U+7A6B(CJK UNIFIED IDEOGRAPH-7A6B)

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

Programming

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

Web

CSS
\007A6B
HtmlDecimal
穫
HtmlHexadecimal
穫
Url
%E7%A9%AB

Code

MD5
32ed0d66c02ba4f56551f31819f7edf7
Sha1
433e793bcf269255393f7c513c61af12f15a972c
Base64
56mr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A6B';
console.log(char);  // Output: 穫

Java:

char c = '\u7A6B';
System.out.println(c);  // Output: 穫

JSON:

{"text": "\u7A6B"}  // Value: 穫

Python:

char = '\u7A6B'
print(char)  # Output: 穫

Perl:

my $char = "\x{7A6B}";
print $char;  # Output: 穫

PHP:

$char = "\x{7A6B}";
echo $char;  // Output: 穫

Ruby:

char = "\u{7A6B}"
puts char  # Output: 穫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31339;</p>  <!-- Display: 穫 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A6B;</p>  <!-- Display: 穫 -->

URL Encoding:

// 穫 URL encoding
https://unicodefinder.com/search.php?query=%E7%A9%AB

Encodings

MD5:

32ed0d66c02ba4f56551f31819f7edf7

SHA1:

433e793bcf269255393f7c513c61af12f15a972c

Base64:

56mr