Unicode Finder

"癐" U+7650(CJK UNIFIED IDEOGRAPH-7650)

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

Programming

C
\u7650
JavaScript
\u7650
Java
\u7650
Json
\u7650
Python
\u7650
Perl
\x{7650}
PHP
\x{7650}
Ruby
\u{7650}
Rust
\u{7650}
Go
\u7650

Web

CSS
\007650
HtmlDecimal
癐
HtmlHexadecimal
癐
Url
%E7%99%90

Code

MD5
ce21922b4fa7572fc22083a2ef108c0e
Sha1
3bf5fd7d3a674ef4a5251c8d8ac5cb225cee6458
Base64
55mQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7650';
console.log(char);  // Output: 癐

Java:

char c = '\u7650';
System.out.println(c);  // Output: 癐

JSON:

{"text": "\u7650"}  // Value: 癐

Python:

char = '\u7650'
print(char)  # Output: 癐

Perl:

my $char = "\x{7650}";
print $char;  # Output: 癐

PHP:

$char = "\x{7650}";
echo $char;  // Output: 癐

Ruby:

char = "\u{7650}"
puts char  # Output: 癐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007650";  /* Display: 癐 */
}

HTML Decimal:

<p>HTML decimal: &#30288;</p>  <!-- Display: 癐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7650;</p>  <!-- Display: 癐 -->

URL Encoding:

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

Encodings

MD5:

ce21922b4fa7572fc22083a2ef108c0e

SHA1:

3bf5fd7d3a674ef4a5251c8d8ac5cb225cee6458

Base64:

55mQ