Unicode Finder

"嶚" U+5D9A(CJK UNIFIED IDEOGRAPH-5D9A)

U+5D9A
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5D9A

Programming

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

Web

CSS
\005D9A
HtmlDecimal
嶚
HtmlHexadecimal
嶚
Url
%E5%B6%9A

Code

MD5
844ef4d63c47a6ac24116eb5c081cc2b
Sha1
7107635d741eb4d85bfe2e498b1da96085379eb6
Base64
5baa

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5D9A';
console.log(char);  // Output: 嶚

Java:

char c = '\u5D9A';
System.out.println(c);  // Output: 嶚

JSON:

{"text": "\u5D9A"}  // Value: 嶚

Python:

char = '\u5D9A'
print(char)  # Output: 嶚

Perl:

my $char = "\x{5D9A}";
print $char;  # Output: 嶚

PHP:

$char = "\x{5D9A}";
echo $char;  // Output: 嶚

Ruby:

char = "\u{5D9A}"
puts char  # Output: 嶚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23962;</p>  <!-- Display: 嶚 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D9A;</p>  <!-- Display: 嶚 -->

URL Encoding:

// 嶚 URL encoding
https://unicodefinder.com/search.php?query=%E5%B6%9A

Encodings

MD5:

844ef4d63c47a6ac24116eb5c081cc2b

SHA1:

7107635d741eb4d85bfe2e498b1da96085379eb6

Base64:

5baa