Unicode Finder

"嶆" U+5D86(CJK UNIFIED IDEOGRAPH-5D86)

U+5D86
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5D86

Programming

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

Web

CSS
\005D86
HtmlDecimal
嶆
HtmlHexadecimal
嶆
Url
%E5%B6%86

Code

MD5
48791f11ed5ea3bb74e23b7507347412
Sha1
32fc5d72167cb91041fbaa77ee7a81e6c66f7f4f
Base64
5baG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5D86';
console.log(char);  // Output: 嶆

Java:

char c = '\u5D86';
System.out.println(c);  // Output: 嶆

JSON:

{"text": "\u5D86"}  // Value: 嶆

Python:

char = '\u5D86'
print(char)  # Output: 嶆

Perl:

my $char = "\x{5D86}";
print $char;  # Output: 嶆

PHP:

$char = "\x{5D86}";
echo $char;  // Output: 嶆

Ruby:

char = "\u{5D86}"
puts char  # Output: 嶆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23942;</p>  <!-- Display: 嶆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D86;</p>  <!-- Display: 嶆 -->

URL Encoding:

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

Encodings

MD5:

48791f11ed5ea3bb74e23b7507347412

SHA1:

32fc5d72167cb91041fbaa77ee7a81e6c66f7f4f

Base64:

5baG