Unicode Finder

"峃" U+5CC3(CJK UNIFIED IDEOGRAPH-5CC3)

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

Programming

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

Web

CSS
\005CC3
HtmlDecimal
峃
HtmlHexadecimal
峃
Url
%E5%B3%83

Code

MD5
759390fa9425795b70f3be6b639ade74
Sha1
ad5ddfe1c7a17ad97ca1de43b7a863e6dbe12e6a
Base64
5bOD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CC3';
console.log(char);  // Output: 峃

Java:

char c = '\u5CC3';
System.out.println(c);  // Output: 峃

JSON:

{"text": "\u5CC3"}  // Value: 峃

Python:

char = '\u5CC3'
print(char)  # Output: 峃

Perl:

my $char = "\x{5CC3}";
print $char;  # Output: 峃

PHP:

$char = "\x{5CC3}";
echo $char;  // Output: 峃

Ruby:

char = "\u{5CC3}"
puts char  # Output: 峃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23747;</p>  <!-- Display: 峃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CC3;</p>  <!-- Display: 峃 -->

URL Encoding:

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

Encodings

MD5:

759390fa9425795b70f3be6b639ade74

SHA1:

ad5ddfe1c7a17ad97ca1de43b7a863e6dbe12e6a

Base64:

5bOD