Unicode Finder

"尤" U+5C24(CJK UNIFIED IDEOGRAPH-5C24)

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

Programming

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

Web

CSS
\005C24
HtmlDecimal
尤
HtmlHexadecimal
尤
Url
%E5%B0%A4

Code

MD5
33eb152dbdc40af51b901a626ee04769
Sha1
2210cc7923ba82d505df6a086c8791a2b94a768d
Base64
5bCk

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C24';
console.log(char);  // Output: 尤

Java:

char c = '\u5C24';
System.out.println(c);  // Output: 尤

JSON:

{"text": "\u5C24"}  // Value: 尤

Python:

char = '\u5C24'
print(char)  # Output: 尤

Perl:

my $char = "\x{5C24}";
print $char;  # Output: 尤

PHP:

$char = "\x{5C24}";
echo $char;  // Output: 尤

Ruby:

char = "\u{5C24}"
puts char  # Output: 尤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23588;</p>  <!-- Display: 尤 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C24;</p>  <!-- Display: 尤 -->

URL Encoding:

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

Encodings

MD5:

33eb152dbdc40af51b901a626ee04769

SHA1:

2210cc7923ba82d505df6a086c8791a2b94a768d

Base64:

5bCk