Unicode Finder

"阃" U+9603(CJK UNIFIED IDEOGRAPH-9603)

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

Programming

C
\u9603
JavaScript
\u9603
Java
\u9603
Json
\u9603
Python
\u9603
Perl
\x{9603}
PHP
\x{9603}
Ruby
\u{9603}
Rust
\u{9603}
Go
\u9603

Web

CSS
\009603
HtmlDecimal
阃
HtmlHexadecimal
阃
Url
%E9%98%83

Code

MD5
8ee2d21a04b0f3f70f0ad6dd087f4af4
Sha1
f80f196d94e61d91399b67ce324165bb10b383d0
Base64
6ZiD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9603';
console.log(char);  // Output: 阃

Java:

char c = '\u9603';
System.out.println(c);  // Output: 阃

JSON:

{"text": "\u9603"}  // Value: 阃

Python:

char = '\u9603'
print(char)  # Output: 阃

Perl:

my $char = "\x{9603}";
print $char;  # Output: 阃

PHP:

$char = "\x{9603}";
echo $char;  // Output: 阃

Ruby:

char = "\u{9603}"
puts char  # Output: 阃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009603";  /* Display: 阃 */
}

HTML Decimal:

<p>HTML decimal: &#38403;</p>  <!-- Display: 阃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9603;</p>  <!-- Display: 阃 -->

URL Encoding:

// 阃 URL encoding
https://unicodefinder.com/search.php?query=%E9%98%83

Encodings

MD5:

8ee2d21a04b0f3f70f0ad6dd087f4af4

SHA1:

f80f196d94e61d91399b67ce324165bb10b383d0

Base64:

6ZiD