Unicode Finder

"癑" U+7651(CJK UNIFIED IDEOGRAPH-7651)

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

Programming

C
\u7651
JavaScript
\u7651
Java
\u7651
Json
\u7651
Python
\u7651
Perl
\x{7651}
PHP
\x{7651}
Ruby
\u{7651}
Rust
\u{7651}
Go
\u7651

Web

CSS
\007651
HtmlDecimal
癑
HtmlHexadecimal
癑
Url
%E7%99%91

Code

MD5
80bd1ca197f1a12baafe806e51940b52
Sha1
12b76f1cd3ed9f9d7784c6590e788fbf6ec60bc6
Base64
55mR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7651';
console.log(char);  // Output: 癑

Java:

char c = '\u7651';
System.out.println(c);  // Output: 癑

JSON:

{"text": "\u7651"}  // Value: 癑

Python:

char = '\u7651'
print(char)  # Output: 癑

Perl:

my $char = "\x{7651}";
print $char;  # Output: 癑

PHP:

$char = "\x{7651}";
echo $char;  // Output: 癑

Ruby:

char = "\u{7651}"
puts char  # Output: 癑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007651";  /* Display: 癑 */
}

HTML Decimal:

<p>HTML decimal: &#30289;</p>  <!-- Display: 癑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7651;</p>  <!-- Display: 癑 -->

URL Encoding:

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

Encodings

MD5:

80bd1ca197f1a12baafe806e51940b52

SHA1:

12b76f1cd3ed9f9d7784c6590e788fbf6ec60bc6

Base64:

55mR