Unicode Finder

"嵣" U+5D63(CJK UNIFIED IDEOGRAPH-5D63)

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

Programming

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

Web

CSS
\005D63
HtmlDecimal
嵣
HtmlHexadecimal
嵣
Url
%E5%B5%A3

Code

MD5
6bbe73ea2f3290b2012de16830e55518
Sha1
d8dd523039080afe6b8e6810f7e81d0fbff97ee2
Base64
5bWj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5D63';
console.log(char);  // Output: 嵣

Java:

char c = '\u5D63';
System.out.println(c);  // Output: 嵣

JSON:

{"text": "\u5D63"}  // Value: 嵣

Python:

char = '\u5D63'
print(char)  # Output: 嵣

Perl:

my $char = "\x{5D63}";
print $char;  # Output: 嵣

PHP:

$char = "\x{5D63}";
echo $char;  // Output: 嵣

Ruby:

char = "\u{5D63}"
puts char  # Output: 嵣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23907;</p>  <!-- Display: 嵣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D63;</p>  <!-- Display: 嵣 -->

URL Encoding:

// 嵣 URL encoding
https://unicodefinder.com/search.php?query=%E5%B5%A3

Encodings

MD5:

6bbe73ea2f3290b2012de16830e55518

SHA1:

d8dd523039080afe6b8e6810f7e81d0fbff97ee2

Base64:

5bWj