Unicode Finder

"嶮" U+5DAE(CJK UNIFIED IDEOGRAPH-5DAE)

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

Programming

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

Web

CSS
\005DAE
HtmlDecimal
嶮
HtmlHexadecimal
嶮
Url
%E5%B6%AE

Code

MD5
e3f5cb4331fb3da4c62b2b4cfe658a7c
Sha1
e5354baa45f2a95054e480c4336f3358f35dc8c1
Base64
5bau

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DAE';
console.log(char);  // Output: 嶮

Java:

char c = '\u5DAE';
System.out.println(c);  // Output: 嶮

JSON:

{"text": "\u5DAE"}  // Value: 嶮

Python:

char = '\u5DAE'
print(char)  # Output: 嶮

Perl:

my $char = "\x{5DAE}";
print $char;  # Output: 嶮

PHP:

$char = "\x{5DAE}";
echo $char;  // Output: 嶮

Ruby:

char = "\u{5DAE}"
puts char  # Output: 嶮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23982;</p>  <!-- Display: 嶮 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DAE;</p>  <!-- Display: 嶮 -->

URL Encoding:

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

Encodings

MD5:

e3f5cb4331fb3da4c62b2b4cfe658a7c

SHA1:

e5354baa45f2a95054e480c4336f3358f35dc8c1

Base64:

5bau