Unicode Finder

"峭" U+5CED(CJK UNIFIED IDEOGRAPH-5CED)

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

Programming

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

Web

CSS
\005CED
HtmlDecimal
峭
HtmlHexadecimal
峭
Url
%E5%B3%AD

Code

MD5
f1de6f2c6fd0fbca26fdd4dfdf65c223
Sha1
72a68b58bf156afc11b022a846a338fdb4046a43
Base64
5bOt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CED';
console.log(char);  // Output: 峭

Java:

char c = '\u5CED';
System.out.println(c);  // Output: 峭

JSON:

{"text": "\u5CED"}  // Value: 峭

Python:

char = '\u5CED'
print(char)  # Output: 峭

Perl:

my $char = "\x{5CED}";
print $char;  # Output: 峭

PHP:

$char = "\x{5CED}";
echo $char;  // Output: 峭

Ruby:

char = "\u{5CED}"
puts char  # Output: 峭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23789;</p>  <!-- Display: 峭 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CED;</p>  <!-- Display: 峭 -->

URL Encoding:

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

Encodings

MD5:

f1de6f2c6fd0fbca26fdd4dfdf65c223

SHA1:

72a68b58bf156afc11b022a846a338fdb4046a43

Base64:

5bOt