Unicode Finder

"希" U+5E0C(CJK UNIFIED IDEOGRAPH-5E0C)

U+5E0C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5E0C

Programming

C
\u5E0C
JavaScript
\u5E0C
Java
\u5E0C
Json
\u5E0C
Python
\u5E0C
Perl
\x{5E0C}
PHP
\x{5E0C}
Ruby
\u{5E0C}
Rust
\u{5E0C}
Go
\u5E0C

Web

CSS
\005E0C
HtmlDecimal
希
HtmlHexadecimal
希
Url
%E5%B8%8C

Code

MD5
ca182a2ad0b5e4dd37568ddc273d2322
Sha1
466141f5a2215442a82e5a8c75b2eb635b23c3b1
Base64
5biM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E0C';
console.log(char);  // Output: 希

Java:

char c = '\u5E0C';
System.out.println(c);  // Output: 希

JSON:

{"text": "\u5E0C"}  // Value: 希

Python:

char = '\u5E0C'
print(char)  # Output: 希

Perl:

my $char = "\x{5E0C}";
print $char;  # Output: 希

PHP:

$char = "\x{5E0C}";
echo $char;  // Output: 希

Ruby:

char = "\u{5E0C}"
puts char  # Output: 希

Rust:

let c = '\u{5E0C}';
println!("{}", c);  // Output: 希

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005E0C";  /* Display: 希 */
}

HTML Decimal:

<p>HTML decimal: &#24076;</p>  <!-- Display: 希 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E0C;</p>  <!-- Display: 希 -->

URL Encoding:

// 希 URL encoding
https://unicodefinder.com/search.php?query=%E5%B8%8C

Encodings

MD5:

ca182a2ad0b5e4dd37568ddc273d2322

SHA1:

466141f5a2215442a82e5a8c75b2eb635b23c3b1

Base64:

5biM