Unicode Finder

"嶽" U+5DBD(CJK UNIFIED IDEOGRAPH-5DBD)

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

Programming

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

Web

CSS
\005DBD
HtmlDecimal
嶽
HtmlHexadecimal
嶽
Url
%E5%B6%BD

Code

MD5
723a5d8bf3b7a0711dbf22e7c26d43dc
Sha1
5faa7b5f3435a7a9c340b2a44627739e3986d342
Base64
5ba9

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DBD';
console.log(char);  // Output: 嶽

Java:

char c = '\u5DBD';
System.out.println(c);  // Output: 嶽

JSON:

{"text": "\u5DBD"}  // Value: 嶽

Python:

char = '\u5DBD'
print(char)  # Output: 嶽

Perl:

my $char = "\x{5DBD}";
print $char;  # Output: 嶽

PHP:

$char = "\x{5DBD}";
echo $char;  // Output: 嶽

Ruby:

char = "\u{5DBD}"
puts char  # Output: 嶽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23997;</p>  <!-- Display: 嶽 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DBD;</p>  <!-- Display: 嶽 -->

URL Encoding:

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

Encodings

MD5:

723a5d8bf3b7a0711dbf22e7c26d43dc

SHA1:

5faa7b5f3435a7a9c340b2a44627739e3986d342

Base64:

5ba9