Unicode Finder

"昶" U+6636(CJK UNIFIED IDEOGRAPH-6636)

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

Programming

C
\u6636
JavaScript
\u6636
Java
\u6636
Json
\u6636
Python
\u6636
Perl
\x{6636}
PHP
\x{6636}
Ruby
\u{6636}
Rust
\u{6636}
Go
\u6636

Web

CSS
\006636
HtmlDecimal
昶
HtmlHexadecimal
昶
Url
%E6%98%B6

Code

MD5
6f1f77230b63a11bc23c6d812f7dc0fb
Sha1
f39c907a2fe6365ed7f2034958e80a4e22d20e59
Base64
5pi2

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6636';
console.log(char);  // Output: 昶

Java:

char c = '\u6636';
System.out.println(c);  // Output: 昶

JSON:

{"text": "\u6636"}  // Value: 昶

Python:

char = '\u6636'
print(char)  # Output: 昶

Perl:

my $char = "\x{6636}";
print $char;  # Output: 昶

PHP:

$char = "\x{6636}";
echo $char;  // Output: 昶

Ruby:

char = "\u{6636}"
puts char  # Output: 昶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006636";  /* Display: 昶 */
}

HTML Decimal:

<p>HTML decimal: &#26166;</p>  <!-- Display: 昶 -->

HTML Hexadecimal:

<p>HTML hex: &#x6636;</p>  <!-- Display: 昶 -->

URL Encoding:

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

Encodings

MD5:

6f1f77230b63a11bc23c6d812f7dc0fb

SHA1:

f39c907a2fe6365ed7f2034958e80a4e22d20e59

Base64:

5pi2