Unicode Finder

"善" U+5584(CJK UNIFIED IDEOGRAPH-5584)

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

Programming

C
\u5584
JavaScript
\u5584
Java
\u5584
Json
\u5584
Python
\u5584
Perl
\x{5584}
PHP
\x{5584}
Ruby
\u{5584}
Rust
\u{5584}
Go
\u5584

Web

CSS
\005584
HtmlDecimal
善
HtmlHexadecimal
善
Url
%E5%96%84

Code

MD5
2fca8cbcd2d41b11c38379debf02c59f
Sha1
c81f42d7d75bd6bc69261b1b814cc9a1a5a1448c
Base64
5ZaE

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

Programming Languages

C:

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

JavaScript:

const char = '\u5584';
console.log(char);  // Output: 善

Java:

char c = '\u5584';
System.out.println(c);  // Output: 善

JSON:

{"text": "\u5584"}  // Value: 善

Python:

char = '\u5584'
print(char)  # Output: 善

Perl:

my $char = "\x{5584}";
print $char;  # Output: 善

PHP:

$char = "\x{5584}";
echo $char;  // Output: 善

Ruby:

char = "\u{5584}"
puts char  # Output: 善

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005584";  /* Display: 善 */
}

HTML Decimal:

<p>HTML decimal: &#21892;</p>  <!-- Display: 善 -->

HTML Hexadecimal:

<p>HTML hex: &#x5584;</p>  <!-- Display: 善 -->

URL Encoding:

// 善 URL encoding
https://unicodefinder.com/search.php?query=%E5%96%84

Encodings

MD5:

2fca8cbcd2d41b11c38379debf02c59f

SHA1:

c81f42d7d75bd6bc69261b1b814cc9a1a5a1448c

Base64:

5ZaE