Unicode Finder

"嶾" U+5DBE(CJK UNIFIED IDEOGRAPH-5DBE)

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

Programming

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

Web

CSS
\005DBE
HtmlDecimal
嶾
HtmlHexadecimal
嶾
Url
%E5%B6%BE

Code

MD5
fada9ce45a73517cfef3740058a4605b
Sha1
850a5843fb329c7814da9483623ca6628de3cdbe
Base64
5ba+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DBE';
console.log(char);  // Output: 嶾

Java:

char c = '\u5DBE';
System.out.println(c);  // Output: 嶾

JSON:

{"text": "\u5DBE"}  // Value: 嶾

Python:

char = '\u5DBE'
print(char)  # Output: 嶾

Perl:

my $char = "\x{5DBE}";
print $char;  # Output: 嶾

PHP:

$char = "\x{5DBE}";
echo $char;  // Output: 嶾

Ruby:

char = "\u{5DBE}"
puts char  # Output: 嶾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23998;</p>  <!-- Display: 嶾 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DBE;</p>  <!-- Display: 嶾 -->

URL Encoding:

// 嶾 URL encoding
https://unicodefinder.com/search.php?query=%E5%B6%BE

Encodings

MD5:

fada9ce45a73517cfef3740058a4605b

SHA1:

850a5843fb329c7814da9483623ca6628de3cdbe

Base64:

5ba+