Unicode Finder

"砲" U+7832(CJK UNIFIED IDEOGRAPH-7832)

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

Programming

C
\u7832
JavaScript
\u7832
Java
\u7832
Json
\u7832
Python
\u7832
Perl
\x{7832}
PHP
\x{7832}
Ruby
\u{7832}
Rust
\u{7832}
Go
\u7832

Web

CSS
\007832
HtmlDecimal
砲
HtmlHexadecimal
砲
Url
%E7%A0%B2

Code

MD5
5b78ede8e4b40e01ca25ff3c070999f9
Sha1
9b3c607869af51c359b468414d955c6c6bf6686b
Base64
56Cy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7832';
console.log(char);  // Output: 砲

Java:

char c = '\u7832';
System.out.println(c);  // Output: 砲

JSON:

{"text": "\u7832"}  // Value: 砲

Python:

char = '\u7832'
print(char)  # Output: 砲

Perl:

my $char = "\x{7832}";
print $char;  # Output: 砲

PHP:

$char = "\x{7832}";
echo $char;  // Output: 砲

Ruby:

char = "\u{7832}"
puts char  # Output: 砲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007832";  /* Display: 砲 */
}

HTML Decimal:

<p>HTML decimal: &#30770;</p>  <!-- Display: 砲 -->

HTML Hexadecimal:

<p>HTML hex: &#x7832;</p>  <!-- Display: 砲 -->

URL Encoding:

// 砲 URL encoding
https://unicodefinder.com/search.php?query=%E7%A0%B2

Encodings

MD5:

5b78ede8e4b40e01ca25ff3c070999f9

SHA1:

9b3c607869af51c359b468414d955c6c6bf6686b

Base64:

56Cy