Unicode Finder

"峮" U+5CEE(CJK UNIFIED IDEOGRAPH-5CEE)

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

Programming

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

Web

CSS
\005CEE
HtmlDecimal
峮
HtmlHexadecimal
峮
Url
%E5%B3%AE

Code

MD5
f3964a5818560e9d640eb392fe9b17da
Sha1
b415122bf30208391f4370c917d9b6c4b8d3e86a
Base64
5bOu

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CEE';
console.log(char);  // Output: 峮

Java:

char c = '\u5CEE';
System.out.println(c);  // Output: 峮

JSON:

{"text": "\u5CEE"}  // Value: 峮

Python:

char = '\u5CEE'
print(char)  # Output: 峮

Perl:

my $char = "\x{5CEE}";
print $char;  # Output: 峮

PHP:

$char = "\x{5CEE}";
echo $char;  // Output: 峮

Ruby:

char = "\u{5CEE}"
puts char  # Output: 峮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23790;</p>  <!-- Display: 峮 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CEE;</p>  <!-- Display: 峮 -->

URL Encoding:

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

Encodings

MD5:

f3964a5818560e9d640eb392fe9b17da

SHA1:

b415122bf30208391f4370c917d9b6c4b8d3e86a

Base64:

5bOu