Unicode Finder

"尻" U+5C3B(CJK UNIFIED IDEOGRAPH-5C3B)

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

Programming

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

Web

CSS
\005C3B
HtmlDecimal
尻
HtmlHexadecimal
尻
Url
%E5%B0%BB

Code

MD5
336bca3d1c4081eb8acc8091732c8750
Sha1
4a3fad303d054753eccd93cdac96276ed944d457
Base64
5bC7

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C3B';
console.log(char);  // Output: 尻

Java:

char c = '\u5C3B';
System.out.println(c);  // Output: 尻

JSON:

{"text": "\u5C3B"}  // Value: 尻

Python:

char = '\u5C3B'
print(char)  # Output: 尻

Perl:

my $char = "\x{5C3B}";
print $char;  # Output: 尻

PHP:

$char = "\x{5C3B}";
echo $char;  // Output: 尻

Ruby:

char = "\u{5C3B}"
puts char  # Output: 尻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23611;</p>  <!-- Display: 尻 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C3B;</p>  <!-- Display: 尻 -->

URL Encoding:

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

Encodings

MD5:

336bca3d1c4081eb8acc8091732c8750

SHA1:

4a3fad303d054753eccd93cdac96276ed944d457

Base64:

5bC7