Unicode Finder

"兦" U+5166(CJK UNIFIED IDEOGRAPH-5166)

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

Programming

C
\u5166
JavaScript
\u5166
Java
\u5166
Json
\u5166
Python
\u5166
Perl
\x{5166}
PHP
\x{5166}
Ruby
\u{5166}
Rust
\u{5166}
Go
\u5166

Web

CSS
\005166
HtmlDecimal
兦
HtmlHexadecimal
兦
Url
%E5%85%A6

Code

MD5
701f2c47ed84e466ca2d0fabd7805146
Sha1
a56dcad4ccdbbe1aaf7a13c049af931456722729
Base64
5YWm

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5166';
console.log(char);  // Output: 兦

Java:

char c = '\u5166';
System.out.println(c);  // Output: 兦

JSON:

{"text": "\u5166"}  // Value: 兦

Python:

char = '\u5166'
print(char)  # Output: 兦

Perl:

my $char = "\x{5166}";
print $char;  # Output: 兦

PHP:

$char = "\x{5166}";
echo $char;  // Output: 兦

Ruby:

char = "\u{5166}"
puts char  # Output: 兦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005166";  /* Display: 兦 */
}

HTML Decimal:

<p>HTML decimal: &#20838;</p>  <!-- Display: 兦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5166;</p>  <!-- Display: 兦 -->

URL Encoding:

// 兦 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%A6

Encodings

MD5:

701f2c47ed84e466ca2d0fabd7805146

SHA1:

a56dcad4ccdbbe1aaf7a13c049af931456722729

Base64:

5YWm