Unicode Finder

"惨" U+60E8(CJK UNIFIED IDEOGRAPH-60E8)

U+60E8
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-60E8

Programming

C
\u60E8
JavaScript
\u60E8
Java
\u60E8
Json
\u60E8
Python
\u60E8
Perl
\x{60E8}
PHP
\x{60E8}
Ruby
\u{60E8}
Rust
\u{60E8}
Go
\u60E8

Web

CSS
\0060E8
HtmlDecimal
惨
HtmlHexadecimal
惨
Url
%E6%83%A8

Code

MD5
a4d7efd800d10c9b7551ad98ce01f4e7
Sha1
e1b53ab4f32431d410c0c05ef0605f7ef056446e
Base64
5oOo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u60E8';
console.log(char);  // Output: 惨

Java:

char c = '\u60E8';
System.out.println(c);  // Output: 惨

JSON:

{"text": "\u60E8"}  // Value: 惨

Python:

char = '\u60E8'
print(char)  # Output: 惨

Perl:

my $char = "\x{60E8}";
print $char;  # Output: 惨

PHP:

$char = "\x{60E8}";
echo $char;  // Output: 惨

Ruby:

char = "\u{60E8}"
puts char  # Output: 惨

Rust:

let c = '\u{60E8}';
println!("{}", c);  // Output: 惨

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0060E8";  /* Display: 惨 */
}

HTML Decimal:

<p>HTML decimal: &#24808;</p>  <!-- Display: 惨 -->

HTML Hexadecimal:

<p>HTML hex: &#x60E8;</p>  <!-- Display: 惨 -->

URL Encoding:

// 惨 URL encoding
https://unicodefinder.com/search.php?query=%E6%83%A8

Encodings

MD5:

a4d7efd800d10c9b7551ad98ce01f4e7

SHA1:

e1b53ab4f32431d410c0c05ef0605f7ef056446e

Base64:

5oOo