Unicode Finder

"昃" U+6603(CJK UNIFIED IDEOGRAPH-6603)

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

Programming

C
\u6603
JavaScript
\u6603
Java
\u6603
Json
\u6603
Python
\u6603
Perl
\x{6603}
PHP
\x{6603}
Ruby
\u{6603}
Rust
\u{6603}
Go
\u6603

Web

CSS
\006603
HtmlDecimal
昃
HtmlHexadecimal
昃
Url
%E6%98%83

Code

MD5
3a7488acca6dab3d5e2c326bceabc263
Sha1
9f97d00171e7e0685cc572e1aa7d7a85db9da804
Base64
5piD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6603';
console.log(char);  // Output: 昃

Java:

char c = '\u6603';
System.out.println(c);  // Output: 昃

JSON:

{"text": "\u6603"}  // Value: 昃

Python:

char = '\u6603'
print(char)  # Output: 昃

Perl:

my $char = "\x{6603}";
print $char;  # Output: 昃

PHP:

$char = "\x{6603}";
echo $char;  // Output: 昃

Ruby:

char = "\u{6603}"
puts char  # Output: 昃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006603";  /* Display: 昃 */
}

HTML Decimal:

<p>HTML decimal: &#26115;</p>  <!-- Display: 昃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6603;</p>  <!-- Display: 昃 -->

URL Encoding:

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

Encodings

MD5:

3a7488acca6dab3d5e2c326bceabc263

SHA1:

9f97d00171e7e0685cc572e1aa7d7a85db9da804

Base64:

5piD