Unicode Finder

"癢" U+7662(CJK UNIFIED IDEOGRAPH-7662)

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

Programming

C
\u7662
JavaScript
\u7662
Java
\u7662
Json
\u7662
Python
\u7662
Perl
\x{7662}
PHP
\x{7662}
Ruby
\u{7662}
Rust
\u{7662}
Go
\u7662

Web

CSS
\007662
HtmlDecimal
癢
HtmlHexadecimal
癢
Url
%E7%99%A2

Code

MD5
3289679d710101ef10c020574e79e4d5
Sha1
72148ee1076cb3b9c2adf69665213fe411b8eb3a
Base64
55mi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7662';
console.log(char);  // Output: 癢

Java:

char c = '\u7662';
System.out.println(c);  // Output: 癢

JSON:

{"text": "\u7662"}  // Value: 癢

Python:

char = '\u7662'
print(char)  # Output: 癢

Perl:

my $char = "\x{7662}";
print $char;  # Output: 癢

PHP:

$char = "\x{7662}";
echo $char;  // Output: 癢

Ruby:

char = "\u{7662}"
puts char  # Output: 癢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007662";  /* Display: 癢 */
}

HTML Decimal:

<p>HTML decimal: &#30306;</p>  <!-- Display: 癢 -->

HTML Hexadecimal:

<p>HTML hex: &#x7662;</p>  <!-- Display: 癢 -->

URL Encoding:

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

Encodings

MD5:

3289679d710101ef10c020574e79e4d5

SHA1:

72148ee1076cb3b9c2adf69665213fe411b8eb3a

Base64:

55mi