Unicode Finder

"尨" U+5C28(CJK UNIFIED IDEOGRAPH-5C28)

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

Programming

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

Web

CSS
\005C28
HtmlDecimal
尨
HtmlHexadecimal
尨
Url
%E5%B0%A8

Code

MD5
cae3b575ec6830906f5242cf961b4cbd
Sha1
00dc1ed6ef87e3d401f45995abac0cbeeba2e469
Base64
5bCo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C28';
console.log(char);  // Output: 尨

Java:

char c = '\u5C28';
System.out.println(c);  // Output: 尨

JSON:

{"text": "\u5C28"}  // Value: 尨

Python:

char = '\u5C28'
print(char)  # Output: 尨

Perl:

my $char = "\x{5C28}";
print $char;  # Output: 尨

PHP:

$char = "\x{5C28}";
echo $char;  // Output: 尨

Ruby:

char = "\u{5C28}"
puts char  # Output: 尨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23592;</p>  <!-- Display: 尨 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C28;</p>  <!-- Display: 尨 -->

URL Encoding:

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

Encodings

MD5:

cae3b575ec6830906f5242cf961b4cbd

SHA1:

00dc1ed6ef87e3d401f45995abac0cbeeba2e469

Base64:

5bCo