Unicode Finder

"戰" U+6230(CJK UNIFIED IDEOGRAPH-6230)

U+6230
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6230

Programming

C
\u6230
JavaScript
\u6230
Java
\u6230
Json
\u6230
Python
\u6230
Perl
\x{6230}
PHP
\x{6230}
Ruby
\u{6230}
Rust
\u{6230}
Go
\u6230

Web

CSS
\006230
HtmlDecimal
戰
HtmlHexadecimal
戰
Url
%E6%88%B0

Code

MD5
2714247bba996dafbb080f931a3d2d56
Sha1
ae0804e2876ddb7c37f068c0ca0d83ead6907cd5
Base64
5oiw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6230';
console.log(char);  // Output: 戰

Java:

char c = '\u6230';
System.out.println(c);  // Output: 戰

JSON:

{"text": "\u6230"}  // Value: 戰

Python:

char = '\u6230'
print(char)  # Output: 戰

Perl:

my $char = "\x{6230}";
print $char;  # Output: 戰

PHP:

$char = "\x{6230}";
echo $char;  // Output: 戰

Ruby:

char = "\u{6230}"
puts char  # Output: 戰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006230";  /* Display: 戰 */
}

HTML Decimal:

<p>HTML decimal: &#25136;</p>  <!-- Display: 戰 -->

HTML Hexadecimal:

<p>HTML hex: &#x6230;</p>  <!-- Display: 戰 -->

URL Encoding:

// 戰 URL encoding
https://unicodefinder.com/search.php?query=%E6%88%B0

Encodings

MD5:

2714247bba996dafbb080f931a3d2d56

SHA1:

ae0804e2876ddb7c37f068c0ca0d83ead6907cd5

Base64:

5oiw