Unicode Finder

"癜" U+765C(CJK UNIFIED IDEOGRAPH-765C)

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

Programming

C
\u765C
JavaScript
\u765C
Java
\u765C
Json
\u765C
Python
\u765C
Perl
\x{765C}
PHP
\x{765C}
Ruby
\u{765C}
Rust
\u{765C}
Go
\u765C

Web

CSS
\00765C
HtmlDecimal
癜
HtmlHexadecimal
癜
Url
%E7%99%9C

Code

MD5
d74d8eede876c19e109dafaedd3fb782
Sha1
f710e9086979ba41b39fb2934a5116eef50605ce
Base64
55mc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u765C';
console.log(char);  // Output: 癜

Java:

char c = '\u765C';
System.out.println(c);  // Output: 癜

JSON:

{"text": "\u765C"}  // Value: 癜

Python:

char = '\u765C'
print(char)  # Output: 癜

Perl:

my $char = "\x{765C}";
print $char;  # Output: 癜

PHP:

$char = "\x{765C}";
echo $char;  // Output: 癜

Ruby:

char = "\u{765C}"
puts char  # Output: 癜

Rust:

let c = '\u{765C}';
println!("{}", c);  // Output: 癜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00765C";  /* Display: 癜 */
}

HTML Decimal:

<p>HTML decimal: &#30300;</p>  <!-- Display: 癜 -->

HTML Hexadecimal:

<p>HTML hex: &#x765C;</p>  <!-- Display: 癜 -->

URL Encoding:

// 癜 URL encoding
https://unicodefinder.com/search.php?query=%E7%99%9C

Encodings

MD5:

d74d8eede876c19e109dafaedd3fb782

SHA1:

f710e9086979ba41b39fb2934a5116eef50605ce

Base64:

55mc