Unicode Finder

"戈" U+6208(CJK UNIFIED IDEOGRAPH-6208)

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

Programming

C
\u6208
JavaScript
\u6208
Java
\u6208
Json
\u6208
Python
\u6208
Perl
\x{6208}
PHP
\x{6208}
Ruby
\u{6208}
Rust
\u{6208}
Go
\u6208

Web

CSS
\006208
HtmlDecimal
戈
HtmlHexadecimal
戈
Url
%E6%88%88

Code

MD5
c65f23dbf98337385e7e6162e3710aa2
Sha1
e7e4b48c286a981a4a665af199334b1d4be49fcf
Base64
5oiI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6208';
console.log(char);  // Output: 戈

Java:

char c = '\u6208';
System.out.println(c);  // Output: 戈

JSON:

{"text": "\u6208"}  // Value: 戈

Python:

char = '\u6208'
print(char)  # Output: 戈

Perl:

my $char = "\x{6208}";
print $char;  # Output: 戈

PHP:

$char = "\x{6208}";
echo $char;  // Output: 戈

Ruby:

char = "\u{6208}"
puts char  # Output: 戈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006208";  /* Display: 戈 */
}

HTML Decimal:

<p>HTML decimal: &#25096;</p>  <!-- Display: 戈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6208;</p>  <!-- Display: 戈 -->

URL Encoding:

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

Encodings

MD5:

c65f23dbf98337385e7e6162e3710aa2

SHA1:

e7e4b48c286a981a4a665af199334b1d4be49fcf

Base64:

5oiI