Unicode Finder

"峨" U+5CE8(CJK UNIFIED IDEOGRAPH-5CE8)

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

Programming

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

Web

CSS
\005CE8
HtmlDecimal
峨
HtmlHexadecimal
峨
Url
%E5%B3%A8

Code

MD5
ac67df754d577e7dd6a640b0dc3f3034
Sha1
9cae9116d4469ce002881d1ac42371c8e32df57a
Base64
5bOo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CE8';
console.log(char);  // Output: 峨

Java:

char c = '\u5CE8';
System.out.println(c);  // Output: 峨

JSON:

{"text": "\u5CE8"}  // Value: 峨

Python:

char = '\u5CE8'
print(char)  # Output: 峨

Perl:

my $char = "\x{5CE8}";
print $char;  # Output: 峨

PHP:

$char = "\x{5CE8}";
echo $char;  // Output: 峨

Ruby:

char = "\u{5CE8}"
puts char  # Output: 峨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23784;</p>  <!-- Display: 峨 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CE8;</p>  <!-- Display: 峨 -->

URL Encoding:

// 峨 URL encoding
https://unicodefinder.com/search.php?query=%E5%B3%A8

Encodings

MD5:

ac67df754d577e7dd6a640b0dc3f3034

SHA1:

9cae9116d4469ce002881d1ac42371c8e32df57a

Base64:

5bOo