Unicode Finder

"峫" U+5CEB(CJK UNIFIED IDEOGRAPH-5CEB)

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

Programming

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

Web

CSS
\005CEB
HtmlDecimal
峫
HtmlHexadecimal
峫
Url
%E5%B3%AB

Code

MD5
bcaaefed5c71badfa7024dbafaf4d9f7
Sha1
35f9f9469139a6567d8a274aa09d4edb5882ac6a
Base64
5bOr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5CEB';
console.log(char);  // Output: 峫

Java:

char c = '\u5CEB';
System.out.println(c);  // Output: 峫

JSON:

{"text": "\u5CEB"}  // Value: 峫

Python:

char = '\u5CEB'
print(char)  # Output: 峫

Perl:

my $char = "\x{5CEB}";
print $char;  # Output: 峫

PHP:

$char = "\x{5CEB}";
echo $char;  // Output: 峫

Ruby:

char = "\u{5CEB}"
puts char  # Output: 峫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23787;</p>  <!-- Display: 峫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CEB;</p>  <!-- Display: 峫 -->

URL Encoding:

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

Encodings

MD5:

bcaaefed5c71badfa7024dbafaf4d9f7

SHA1:

35f9f9469139a6567d8a274aa09d4edb5882ac6a

Base64:

5bOr