Unicode Finder

"戃" U+6203(CJK UNIFIED IDEOGRAPH-6203)

U+6203
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6203

Programming

C
\u6203
JavaScript
\u6203
Java
\u6203
Json
\u6203
Python
\u6203
Perl
\x{6203}
PHP
\x{6203}
Ruby
\u{6203}
Rust
\u{6203}
Go
\u6203

Web

CSS
\006203
HtmlDecimal
戃
HtmlHexadecimal
戃
Url
%E6%88%83

Code

MD5
3321ad3ffdc0d1e05925206dfd5e1960
Sha1
86741cb0182858c10fa16d3b03c396b718433271
Base64
5oiD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6203';
console.log(char);  // Output: 戃

Java:

char c = '\u6203';
System.out.println(c);  // Output: 戃

JSON:

{"text": "\u6203"}  // Value: 戃

Python:

char = '\u6203'
print(char)  # Output: 戃

Perl:

my $char = "\x{6203}";
print $char;  # Output: 戃

PHP:

$char = "\x{6203}";
echo $char;  // Output: 戃

Ruby:

char = "\u{6203}"
puts char  # Output: 戃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006203";  /* Display: 戃 */
}

HTML Decimal:

<p>HTML decimal: &#25091;</p>  <!-- Display: 戃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6203;</p>  <!-- Display: 戃 -->

URL Encoding:

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

Encodings

MD5:

3321ad3ffdc0d1e05925206dfd5e1960

SHA1:

86741cb0182858c10fa16d3b03c396b718433271

Base64:

5oiD