Unicode Finder

"癡" U+7661(CJK UNIFIED IDEOGRAPH-7661)

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

Programming

C
\u7661
JavaScript
\u7661
Java
\u7661
Json
\u7661
Python
\u7661
Perl
\x{7661}
PHP
\x{7661}
Ruby
\u{7661}
Rust
\u{7661}
Go
\u7661

Web

CSS
\007661
HtmlDecimal
癡
HtmlHexadecimal
癡
Url
%E7%99%A1

Code

MD5
3e79677ebe8540dfdf5cf96e77acb13e
Sha1
0827e615561a502db04095518b4f80a0e1dea469
Base64
55mh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7661';
console.log(char);  // Output: 癡

Java:

char c = '\u7661';
System.out.println(c);  // Output: 癡

JSON:

{"text": "\u7661"}  // Value: 癡

Python:

char = '\u7661'
print(char)  # Output: 癡

Perl:

my $char = "\x{7661}";
print $char;  # Output: 癡

PHP:

$char = "\x{7661}";
echo $char;  // Output: 癡

Ruby:

char = "\u{7661}"
puts char  # Output: 癡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007661";  /* Display: 癡 */
}

HTML Decimal:

<p>HTML decimal: &#30305;</p>  <!-- Display: 癡 -->

HTML Hexadecimal:

<p>HTML hex: &#x7661;</p>  <!-- Display: 癡 -->

URL Encoding:

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

Encodings

MD5:

3e79677ebe8540dfdf5cf96e77acb13e

SHA1:

0827e615561a502db04095518b4f80a0e1dea469

Base64:

55mh