Unicode Finder

"峄" U+5CC4(CJK UNIFIED IDEOGRAPH-5CC4)

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

Programming

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

Web

CSS
\005CC4
HtmlDecimal
峄
HtmlHexadecimal
峄
Url
%E5%B3%84

Code

MD5
23d4ee150049e46073ce8705bde15a38
Sha1
8bb8146e89eecfcfcd86c802efc584fb89363954
Base64
5bOE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CC4';
console.log(char);  // Output: 峄

Java:

char c = '\u5CC4';
System.out.println(c);  // Output: 峄

JSON:

{"text": "\u5CC4"}  // Value: 峄

Python:

char = '\u5CC4'
print(char)  # Output: 峄

Perl:

my $char = "\x{5CC4}";
print $char;  # Output: 峄

PHP:

$char = "\x{5CC4}";
echo $char;  // Output: 峄

Ruby:

char = "\u{5CC4}"
puts char  # Output: 峄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23748;</p>  <!-- Display: 峄 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CC4;</p>  <!-- Display: 峄 -->

URL Encoding:

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

Encodings

MD5:

23d4ee150049e46073ce8705bde15a38

SHA1:

8bb8146e89eecfcfcd86c802efc584fb89363954

Base64:

5bOE