Unicode Finder

"昁" U+6601(CJK UNIFIED IDEOGRAPH-6601)

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

Programming

C
\u6601
JavaScript
\u6601
Java
\u6601
Json
\u6601
Python
\u6601
Perl
\x{6601}
PHP
\x{6601}
Ruby
\u{6601}
Rust
\u{6601}
Go
\u6601

Web

CSS
\006601
HtmlDecimal
昁
HtmlHexadecimal
昁
Url
%E6%98%81

Code

MD5
64618b73f8597111171174e98d2c4650
Sha1
ff4c3a5edb85448872af7b5898ce9952eb27dbcd
Base64
5piB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6601';
console.log(char);  // Output: 昁

Java:

char c = '\u6601';
System.out.println(c);  // Output: 昁

JSON:

{"text": "\u6601"}  // Value: 昁

Python:

char = '\u6601'
print(char)  # Output: 昁

Perl:

my $char = "\x{6601}";
print $char;  # Output: 昁

PHP:

$char = "\x{6601}";
echo $char;  // Output: 昁

Ruby:

char = "\u{6601}"
puts char  # Output: 昁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006601";  /* Display: 昁 */
}

HTML Decimal:

<p>HTML decimal: &#26113;</p>  <!-- Display: 昁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6601;</p>  <!-- Display: 昁 -->

URL Encoding:

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

Encodings

MD5:

64618b73f8597111171174e98d2c4650

SHA1:

ff4c3a5edb85448872af7b5898ce9952eb27dbcd

Base64:

5piB