Unicode Finder

"癆" U+7646(CJK UNIFIED IDEOGRAPH-7646)

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

Programming

C
\u7646
JavaScript
\u7646
Java
\u7646
Json
\u7646
Python
\u7646
Perl
\x{7646}
PHP
\x{7646}
Ruby
\u{7646}
Rust
\u{7646}
Go
\u7646

Web

CSS
\007646
HtmlDecimal
癆
HtmlHexadecimal
癆
Url
%E7%99%86

Code

MD5
e7b4ca8f61f31e8927768dd064b1efe7
Sha1
ea1be03e8a17ff8ee6f683bf86990e3ce3da042c
Base64
55mG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7646';
console.log(char);  // Output: 癆

Java:

char c = '\u7646';
System.out.println(c);  // Output: 癆

JSON:

{"text": "\u7646"}  // Value: 癆

Python:

char = '\u7646'
print(char)  # Output: 癆

Perl:

my $char = "\x{7646}";
print $char;  # Output: 癆

PHP:

$char = "\x{7646}";
echo $char;  // Output: 癆

Ruby:

char = "\u{7646}"
puts char  # Output: 癆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007646";  /* Display: 癆 */
}

HTML Decimal:

<p>HTML decimal: &#30278;</p>  <!-- Display: 癆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7646;</p>  <!-- Display: 癆 -->

URL Encoding:

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

Encodings

MD5:

e7b4ca8f61f31e8927768dd064b1efe7

SHA1:

ea1be03e8a17ff8ee6f683bf86990e3ce3da042c

Base64:

55mG