Unicode Finder

"失" U+5931(CJK UNIFIED IDEOGRAPH-5931)

U+5931
اسم الكتلة
CJK Unified Ideographs
الاسم
CJK UNIFIED IDEOGRAPH-5931

Programming

C
\u5931
JavaScript
\u5931
Java
\u5931
Json
\u5931
Python
\u5931
Perl
\x{5931}
PHP
\x{5931}
Ruby
\u{5931}
Rust
\u{5931}
Go
\u5931

Web

CSS
\005931
HtmlDecimal
失
HtmlHexadecimal
失
Url
%E5%A4%B1

Code

MD5
bc1673060df42de33f38e3dab381fe97
Sha1
3c9c0a7f2e9c83406c9c8532256212d3907b85d3
Base64
5aSx

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u5931';
console.log(char);  // Output: 失

Java:

char c = '\u5931';
System.out.println(c);  // Output: 失

JSON:

{"text": "\u5931"}  // Value: 失

Python:

char = '\u5931'
print(char)  # Output: 失

Perl:

my $char = "\x{5931}";
print $char;  # Output: 失

PHP:

$char = "\x{5931}";
echo $char;  // Output: 失

Ruby:

char = "\u{5931}"
puts char  # Output: 失

Rust:

let c = '\u{5931}';
println!("{}", c);  // Output: 失

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005931";  /* Display: 失 */
}

HTML Decimal:

<p>HTML decimal: &#22833;</p>  <!-- Display: 失 -->

HTML Hexadecimal:

<p>HTML hex: &#x5931;</p>  <!-- Display: 失 -->

URL Encoding:

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

Encodings

MD5:

bc1673060df42de33f38e3dab381fe97

SHA1:

3c9c0a7f2e9c83406c9c8532256212d3907b85d3

Base64:

5aSx