Unicode Finder

"癒" U+7652(CJK UNIFIED IDEOGRAPH-7652)

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

Programming

C
\u7652
JavaScript
\u7652
Java
\u7652
Json
\u7652
Python
\u7652
Perl
\x{7652}
PHP
\x{7652}
Ruby
\u{7652}
Rust
\u{7652}
Go
\u7652

Web

CSS
\007652
HtmlDecimal
癒
HtmlHexadecimal
癒
Url
%E7%99%92

Code

MD5
678847c4ffd33651558b39a7c073f5af
Sha1
7ec35dd7a13b622f11e83d6bc2dec4266f661a5c
Base64
55mS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7652';
console.log(char);  // Output: 癒

Java:

char c = '\u7652';
System.out.println(c);  // Output: 癒

JSON:

{"text": "\u7652"}  // Value: 癒

Python:

char = '\u7652'
print(char)  # Output: 癒

Perl:

my $char = "\x{7652}";
print $char;  # Output: 癒

PHP:

$char = "\x{7652}";
echo $char;  // Output: 癒

Ruby:

char = "\u{7652}"
puts char  # Output: 癒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007652";  /* Display: 癒 */
}

HTML Decimal:

<p>HTML decimal: &#30290;</p>  <!-- Display: 癒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7652;</p>  <!-- Display: 癒 -->

URL Encoding:

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

Encodings

MD5:

678847c4ffd33651558b39a7c073f5af

SHA1:

7ec35dd7a13b622f11e83d6bc2dec4266f661a5c

Base64:

55mS