Unicode Finder

"癋" U+764B(CJK UNIFIED IDEOGRAPH-764B)

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

Programming

C
\u764B
JavaScript
\u764B
Java
\u764B
Json
\u764B
Python
\u764B
Perl
\x{764B}
PHP
\x{764B}
Ruby
\u{764B}
Rust
\u{764B}
Go
\u764B

Web

CSS
\00764B
HtmlDecimal
癋
HtmlHexadecimal
癋
Url
%E7%99%8B

Code

MD5
51ed5168d5abfad3d2a307390c07c996
Sha1
a5635bfacd835e8acab1f7c458b1da56f2bf44c8
Base64
55mL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u764B';
console.log(char);  // Output: 癋

Java:

char c = '\u764B';
System.out.println(c);  // Output: 癋

JSON:

{"text": "\u764B"}  // Value: 癋

Python:

char = '\u764B'
print(char)  # Output: 癋

Perl:

my $char = "\x{764B}";
print $char;  # Output: 癋

PHP:

$char = "\x{764B}";
echo $char;  // Output: 癋

Ruby:

char = "\u{764B}"
puts char  # Output: 癋

Rust:

let c = '\u{764B}';
println!("{}", c);  // Output: 癋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00764B";  /* Display: 癋 */
}

HTML Decimal:

<p>HTML decimal: &#30283;</p>  <!-- Display: 癋 -->

HTML Hexadecimal:

<p>HTML hex: &#x764B;</p>  <!-- Display: 癋 -->

URL Encoding:

// 癋 URL encoding
https://unicodefinder.com/search.php?query=%E7%99%8B

Encodings

MD5:

51ed5168d5abfad3d2a307390c07c996

SHA1:

a5635bfacd835e8acab1f7c458b1da56f2bf44c8

Base64:

55mL