Unicode Finder

"癥" U+7665(CJK UNIFIED IDEOGRAPH-7665)

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

Programming

C
\u7665
JavaScript
\u7665
Java
\u7665
Json
\u7665
Python
\u7665
Perl
\x{7665}
PHP
\x{7665}
Ruby
\u{7665}
Rust
\u{7665}
Go
\u7665

Web

CSS
\007665
HtmlDecimal
癥
HtmlHexadecimal
癥
Url
%E7%99%A5

Code

MD5
44472e4c624ed8ed1089205f3abbc8cf
Sha1
1d302dcb7c6898dce7d4801da802cff3116e7c4a
Base64
55ml

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7665';
console.log(char);  // Output: 癥

Java:

char c = '\u7665';
System.out.println(c);  // Output: 癥

JSON:

{"text": "\u7665"}  // Value: 癥

Python:

char = '\u7665'
print(char)  # Output: 癥

Perl:

my $char = "\x{7665}";
print $char;  # Output: 癥

PHP:

$char = "\x{7665}";
echo $char;  // Output: 癥

Ruby:

char = "\u{7665}"
puts char  # Output: 癥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007665";  /* Display: 癥 */
}

HTML Decimal:

<p>HTML decimal: &#30309;</p>  <!-- Display: 癥 -->

HTML Hexadecimal:

<p>HTML hex: &#x7665;</p>  <!-- Display: 癥 -->

URL Encoding:

// 癥 URL encoding
https://unicodefinder.com/search.php?query=%E7%99%A5

Encodings

MD5:

44472e4c624ed8ed1089205f3abbc8cf

SHA1:

1d302dcb7c6898dce7d4801da802cff3116e7c4a

Base64:

55ml