Unicode Finder

"癬" U+766C(CJK UNIFIED IDEOGRAPH-766C)

U+766C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-766C

Programming

C
\u766C
JavaScript
\u766C
Java
\u766C
Json
\u766C
Python
\u766C
Perl
\x{766C}
PHP
\x{766C}
Ruby
\u{766C}
Rust
\u{766C}
Go
\u766C

Web

CSS
\00766C
HtmlDecimal
癬
HtmlHexadecimal
癬
Url
%E7%99%AC

Code

MD5
85b78c5451961e0ff6cd89183df3e8d3
Sha1
c460ae9f50215806c582e4a79a7f62420546d3e0
Base64
55ms

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u766C';
console.log(char);  // Output: 癬

Java:

char c = '\u766C';
System.out.println(c);  // Output: 癬

JSON:

{"text": "\u766C"}  // Value: 癬

Python:

char = '\u766C'
print(char)  # Output: 癬

Perl:

my $char = "\x{766C}";
print $char;  # Output: 癬

PHP:

$char = "\x{766C}";
echo $char;  // Output: 癬

Ruby:

char = "\u{766C}"
puts char  # Output: 癬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30316;</p>  <!-- Display: 癬 -->

HTML Hexadecimal:

<p>HTML hex: &#x766C;</p>  <!-- Display: 癬 -->

URL Encoding:

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

Encodings

MD5:

85b78c5451961e0ff6cd89183df3e8d3

SHA1:

c460ae9f50215806c582e4a79a7f62420546d3e0

Base64:

55ms