Unicode Finder

"ش" U+0634(ARABIC LETTER SHEEN)

ش
U+0634
نام بلوک
Arabic
نام
ARABIC LETTER SHEEN

Programming

C
\u0634
JavaScript
\u0634
Java
\u0634
Json
\u0634
Python
\u0634
Perl
\x{0634}
PHP
\x{0634}
Ruby
\u{0634}
Rust
\u{634}
Go
\u0634

Web

CSS
\000634
HtmlDecimal
ش
HtmlHexadecimal
ش
Url
%D8%B4

Code

MD5
088577d4795f76722c1f2b02dea86e68
Sha1
d42b280f42efadd52f0cde48c765ed4a8c0b0158
Base64
2LQ=

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u0634';
console.log(char);  // Output: ش

Java:

char c = '\u0634';
System.out.println(c);  // Output: ش

JSON:

{"text": "\u0634"}  // Value: ش

Python:

char = '\u0634'
print(char)  # Output: ش

Perl:

my $char = "\x{0634}";
print $char;  # Output: ش

PHP:

$char = "\x{0634}";
echo $char;  // Output: ش

Ruby:

char = "\u{0634}"
puts char  # Output: ش

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000634";  /* Display: ش */
}

HTML Decimal:

<p>HTML decimal: &#1588;</p>  <!-- Display: ش -->

HTML Hexadecimal:

<p>HTML hex: &#x0634;</p>  <!-- Display: ش -->

URL Encoding:

// ش URL encoding
https://unicodefinder.com/search.php?query=%D8%B4

Encodings

MD5:

088577d4795f76722c1f2b02dea86e68

SHA1:

d42b280f42efadd52f0cde48c765ed4a8c0b0158

Base64:

2LQ=