Unicode Finder

"尦" U+5C26(CJK UNIFIED IDEOGRAPH-5C26)

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

Programming

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

Web

CSS
\005C26
HtmlDecimal
尦
HtmlHexadecimal
尦
Url
%E5%B0%A6

Code

MD5
a5dae939eca4deded71b8c8e727568d0
Sha1
42a3f9da0e3682b73b80253f70fbfd688dfc1ea9
Base64
5bCm

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C26';
console.log(char);  // Output: 尦

Java:

char c = '\u5C26';
System.out.println(c);  // Output: 尦

JSON:

{"text": "\u5C26"}  // Value: 尦

Python:

char = '\u5C26'
print(char)  # Output: 尦

Perl:

my $char = "\x{5C26}";
print $char;  # Output: 尦

PHP:

$char = "\x{5C26}";
echo $char;  // Output: 尦

Ruby:

char = "\u{5C26}"
puts char  # Output: 尦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23590;</p>  <!-- Display: 尦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C26;</p>  <!-- Display: 尦 -->

URL Encoding:

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

Encodings

MD5:

a5dae939eca4deded71b8c8e727568d0

SHA1:

42a3f9da0e3682b73b80253f70fbfd688dfc1ea9

Base64:

5bCm