Unicode Finder

"儖" U+5116(CJK UNIFIED IDEOGRAPH-5116)

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

Programming

C
\u5116
JavaScript
\u5116
Java
\u5116
Json
\u5116
Python
\u5116
Perl
\x{5116}
PHP
\x{5116}
Ruby
\u{5116}
Rust
\u{5116}
Go
\u5116

Web

CSS
\005116
HtmlDecimal
儖
HtmlHexadecimal
儖
Url
%E5%84%96

Code

MD5
b4e1e2265ac3c61aa077d8a68911af05
Sha1
136f2562dba0ed478d6d65df01e3b8a4418f5798
Base64
5YSW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5116';
console.log(char);  // Output: 儖

Java:

char c = '\u5116';
System.out.println(c);  // Output: 儖

JSON:

{"text": "\u5116"}  // Value: 儖

Python:

char = '\u5116'
print(char)  # Output: 儖

Perl:

my $char = "\x{5116}";
print $char;  # Output: 儖

PHP:

$char = "\x{5116}";
echo $char;  // Output: 儖

Ruby:

char = "\u{5116}"
puts char  # Output: 儖

Rust:

let c = '\u{5116}';
println!("{}", c);  // Output: 儖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005116";  /* Display: 儖 */
}

HTML Decimal:

<p>HTML decimal: &#20758;</p>  <!-- Display: 儖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5116;</p>  <!-- Display: 儖 -->

URL Encoding:

// 儖 URL encoding
https://unicodefinder.com/search.php?query=%E5%84%96

Encodings

MD5:

b4e1e2265ac3c61aa077d8a68911af05

SHA1:

136f2562dba0ed478d6d65df01e3b8a4418f5798

Base64:

5YSW