Unicode Finder

"尴" U+5C34(CJK UNIFIED IDEOGRAPH-5C34)

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

Programming

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

Web

CSS
\005C34
HtmlDecimal
尴
HtmlHexadecimal
尴
Url
%E5%B0%B4

Code

MD5
86346a0ede7413840470e485c5df1bb6
Sha1
f59ec7457b8209d2417f32cf2ddff81cde0a271b
Base64
5bC0

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C34';
console.log(char);  // Output: 尴

Java:

char c = '\u5C34';
System.out.println(c);  // Output: 尴

JSON:

{"text": "\u5C34"}  // Value: 尴

Python:

char = '\u5C34'
print(char)  # Output: 尴

Perl:

my $char = "\x{5C34}";
print $char;  # Output: 尴

PHP:

$char = "\x{5C34}";
echo $char;  // Output: 尴

Ruby:

char = "\u{5C34}"
puts char  # Output: 尴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23604;</p>  <!-- Display: 尴 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C34;</p>  <!-- Display: 尴 -->

URL Encoding:

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

Encodings

MD5:

86346a0ede7413840470e485c5df1bb6

SHA1:

f59ec7457b8209d2417f32cf2ddff81cde0a271b

Base64:

5bC0