Unicode Finder

"尷" U+5C37(CJK UNIFIED IDEOGRAPH-5C37)

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

Programming

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

Web

CSS
\005C37
HtmlDecimal
尷
HtmlHexadecimal
尷
Url
%E5%B0%B7

Code

MD5
45ab14eefa3d9b7205ba3dbf3a7d71fd
Sha1
0e24528c7a4589ec567317c0422ffb5a98fed2e6
Base64
5bC3

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C37';
console.log(char);  // Output: 尷

Java:

char c = '\u5C37';
System.out.println(c);  // Output: 尷

JSON:

{"text": "\u5C37"}  // Value: 尷

Python:

char = '\u5C37'
print(char)  # Output: 尷

Perl:

my $char = "\x{5C37}";
print $char;  # Output: 尷

PHP:

$char = "\x{5C37}";
echo $char;  // Output: 尷

Ruby:

char = "\u{5C37}"
puts char  # Output: 尷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23607;</p>  <!-- Display: 尷 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C37;</p>  <!-- Display: 尷 -->

URL Encoding:

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

Encodings

MD5:

45ab14eefa3d9b7205ba3dbf3a7d71fd

SHA1:

0e24528c7a4589ec567317c0422ffb5a98fed2e6

Base64:

5bC3