Unicode Finder

"癭" U+766D(CJK UNIFIED IDEOGRAPH-766D)

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

Programming

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

Web

CSS
\00766D
HtmlDecimal
癭
HtmlHexadecimal
癭
Url
%E7%99%AD

Code

MD5
9f33ea3b95005061af45ffe3b0899044
Sha1
72394d8077b6676fc4a2c57cff9cd5e3ee468cdb
Base64
55mt

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u766D';
console.log(char);  // Output: 癭

Java:

char c = '\u766D';
System.out.println(c);  // Output: 癭

JSON:

{"text": "\u766D"}  // Value: 癭

Python:

char = '\u766D'
print(char)  # Output: 癭

Perl:

my $char = "\x{766D}";
print $char;  # Output: 癭

PHP:

$char = "\x{766D}";
echo $char;  // Output: 癭

Ruby:

char = "\u{766D}"
puts char  # Output: 癭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30317;</p>  <!-- Display: 癭 -->

HTML Hexadecimal:

<p>HTML hex: &#x766D;</p>  <!-- Display: 癭 -->

URL Encoding:

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

Encodings

MD5:

9f33ea3b95005061af45ffe3b0899044

SHA1:

72394d8077b6676fc4a2c57cff9cd5e3ee468cdb

Base64:

55mt