Unicode Finder

"尹" U+5C39(CJK UNIFIED IDEOGRAPH-5C39)

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

Programming

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

Web

CSS
\005C39
HtmlDecimal
尹
HtmlHexadecimal
尹
Url
%E5%B0%B9

Code

MD5
f159a72f37d038679635d9e9e2a9cd38
Sha1
3afda0a11dc96ead044f34edf5c31a709a133ff9
Base64
5bC5

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C39';
console.log(char);  // Output: 尹

Java:

char c = '\u5C39';
System.out.println(c);  // Output: 尹

JSON:

{"text": "\u5C39"}  // Value: 尹

Python:

char = '\u5C39'
print(char)  # Output: 尹

Perl:

my $char = "\x{5C39}";
print $char;  # Output: 尹

PHP:

$char = "\x{5C39}";
echo $char;  // Output: 尹

Ruby:

char = "\u{5C39}"
puts char  # Output: 尹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23609;</p>  <!-- Display: 尹 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C39;</p>  <!-- Display: 尹 -->

URL Encoding:

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

Encodings

MD5:

f159a72f37d038679635d9e9e2a9cd38

SHA1:

3afda0a11dc96ead044f34edf5c31a709a133ff9

Base64:

5bC5