Unicode Finder

"嶩" U+5DA9(CJK UNIFIED IDEOGRAPH-5DA9)

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

Programming

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

Web

CSS
\005DA9
HtmlDecimal
嶩
HtmlHexadecimal
嶩
Url
%E5%B6%A9

Code

MD5
02330f5219dc38d32606328606fe2694
Sha1
7cf4877804ecb79556e6b5845cd8e926a473dac3
Base64
5bap

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DA9';
console.log(char);  // Output: 嶩

Java:

char c = '\u5DA9';
System.out.println(c);  // Output: 嶩

JSON:

{"text": "\u5DA9"}  // Value: 嶩

Python:

char = '\u5DA9'
print(char)  # Output: 嶩

Perl:

my $char = "\x{5DA9}";
print $char;  # Output: 嶩

PHP:

$char = "\x{5DA9}";
echo $char;  // Output: 嶩

Ruby:

char = "\u{5DA9}"
puts char  # Output: 嶩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23977;</p>  <!-- Display: 嶩 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DA9;</p>  <!-- Display: 嶩 -->

URL Encoding:

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

Encodings

MD5:

02330f5219dc38d32606328606fe2694

SHA1:

7cf4877804ecb79556e6b5845cd8e926a473dac3

Base64:

5bap