Unicode Finder

"癙" U+7659(CJK UNIFIED IDEOGRAPH-7659)

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

Programming

C
\u7659
JavaScript
\u7659
Java
\u7659
Json
\u7659
Python
\u7659
Perl
\x{7659}
PHP
\x{7659}
Ruby
\u{7659}
Rust
\u{7659}
Go
\u7659

Web

CSS
\007659
HtmlDecimal
癙
HtmlHexadecimal
癙
Url
%E7%99%99

Code

MD5
b5ab0c485fc08a593bd8c1dd18326292
Sha1
4f7f5f7bc4e329d44e8ce2d4fb8b97339c02a0c8
Base64
55mZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7659';
console.log(char);  // Output: 癙

Java:

char c = '\u7659';
System.out.println(c);  // Output: 癙

JSON:

{"text": "\u7659"}  // Value: 癙

Python:

char = '\u7659'
print(char)  # Output: 癙

Perl:

my $char = "\x{7659}";
print $char;  # Output: 癙

PHP:

$char = "\x{7659}";
echo $char;  // Output: 癙

Ruby:

char = "\u{7659}"
puts char  # Output: 癙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007659";  /* Display: 癙 */
}

HTML Decimal:

<p>HTML decimal: &#30297;</p>  <!-- Display: 癙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7659;</p>  <!-- Display: 癙 -->

URL Encoding:

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

Encodings

MD5:

b5ab0c485fc08a593bd8c1dd18326292

SHA1:

4f7f5f7bc4e329d44e8ce2d4fb8b97339c02a0c8

Base64:

55mZ