Unicode Finder

"尒" U+5C12(CJK UNIFIED IDEOGRAPH-5C12)

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

Programming

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

Web

CSS
\005C12
HtmlDecimal
尒
HtmlHexadecimal
尒
Url
%E5%B0%92

Code

MD5
e55e99b6e65d85ee2770438aa5ef42ff
Sha1
08f4d044cc1377107858a158a7bac0684eccf85a
Base64
5bCS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C12';
console.log(char);  // Output: 尒

Java:

char c = '\u5C12';
System.out.println(c);  // Output: 尒

JSON:

{"text": "\u5C12"}  // Value: 尒

Python:

char = '\u5C12'
print(char)  # Output: 尒

Perl:

my $char = "\x{5C12}";
print $char;  # Output: 尒

PHP:

$char = "\x{5C12}";
echo $char;  // Output: 尒

Ruby:

char = "\u{5C12}"
puts char  # Output: 尒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23570;</p>  <!-- Display: 尒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C12;</p>  <!-- Display: 尒 -->

URL Encoding:

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

Encodings

MD5:

e55e99b6e65d85ee2770438aa5ef42ff

SHA1:

08f4d044cc1377107858a158a7bac0684eccf85a

Base64:

5bCS