Unicode Finder

"嶫" U+5DAB(CJK UNIFIED IDEOGRAPH-5DAB)

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

Programming

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

Web

CSS
\005DAB
HtmlDecimal
嶫
HtmlHexadecimal
嶫
Url
%E5%B6%AB

Code

MD5
cabad1499f9a0af9f6b43a2016ded1d4
Sha1
08301e2595dfba872be9fee1db22c2d1a184b26d
Base64
5bar

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DAB';
console.log(char);  // Output: 嶫

Java:

char c = '\u5DAB';
System.out.println(c);  // Output: 嶫

JSON:

{"text": "\u5DAB"}  // Value: 嶫

Python:

char = '\u5DAB'
print(char)  # Output: 嶫

Perl:

my $char = "\x{5DAB}";
print $char;  # Output: 嶫

PHP:

$char = "\x{5DAB}";
echo $char;  // Output: 嶫

Ruby:

char = "\u{5DAB}"
puts char  # Output: 嶫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23979;</p>  <!-- Display: 嶫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DAB;</p>  <!-- Display: 嶫 -->

URL Encoding:

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

Encodings

MD5:

cabad1499f9a0af9f6b43a2016ded1d4

SHA1:

08301e2595dfba872be9fee1db22c2d1a184b26d

Base64:

5bar