Unicode Finder

"尩" U+5C29(CJK UNIFIED IDEOGRAPH-5C29)

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

Programming

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

Web

CSS
\005C29
HtmlDecimal
尩
HtmlHexadecimal
尩
Url
%E5%B0%A9

Code

MD5
ceab34162ded477d337e194a89767c0b
Sha1
0fb283dcd4368ea9f8cfcfc9eec40488c8124d7f
Base64
5bCp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C29';
console.log(char);  // Output: 尩

Java:

char c = '\u5C29';
System.out.println(c);  // Output: 尩

JSON:

{"text": "\u5C29"}  // Value: 尩

Python:

char = '\u5C29'
print(char)  # Output: 尩

Perl:

my $char = "\x{5C29}";
print $char;  # Output: 尩

PHP:

$char = "\x{5C29}";
echo $char;  // Output: 尩

Ruby:

char = "\u{5C29}"
puts char  # Output: 尩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23593;</p>  <!-- Display: 尩 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C29;</p>  <!-- Display: 尩 -->

URL Encoding:

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

Encodings

MD5:

ceab34162ded477d337e194a89767c0b

SHA1:

0fb283dcd4368ea9f8cfcfc9eec40488c8124d7f

Base64:

5bCp