Unicode Finder

"癅" U+7645(CJK UNIFIED IDEOGRAPH-7645)

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

Programming

C
\u7645
JavaScript
\u7645
Java
\u7645
Json
\u7645
Python
\u7645
Perl
\x{7645}
PHP
\x{7645}
Ruby
\u{7645}
Rust
\u{7645}
Go
\u7645

Web

CSS
\007645
HtmlDecimal
癅
HtmlHexadecimal
癅
Url
%E7%99%85

Code

MD5
673862f3175f0b2031309b7361fd9d3d
Sha1
8ca6f1f4aa8ca3728775bb4d69d4f5fc88f3ef41
Base64
55mF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7645';
console.log(char);  // Output: 癅

Java:

char c = '\u7645';
System.out.println(c);  // Output: 癅

JSON:

{"text": "\u7645"}  // Value: 癅

Python:

char = '\u7645'
print(char)  # Output: 癅

Perl:

my $char = "\x{7645}";
print $char;  # Output: 癅

PHP:

$char = "\x{7645}";
echo $char;  // Output: 癅

Ruby:

char = "\u{7645}"
puts char  # Output: 癅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007645";  /* Display: 癅 */
}

HTML Decimal:

<p>HTML decimal: &#30277;</p>  <!-- Display: 癅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7645;</p>  <!-- Display: 癅 -->

URL Encoding:

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

Encodings

MD5:

673862f3175f0b2031309b7361fd9d3d

SHA1:

8ca6f1f4aa8ca3728775bb4d69d4f5fc88f3ef41

Base64:

55mF