Unicode Finder

"ؗ" U+0617(ARABIC SMALL HIGH ZAIN)

ؗ
U+0617
שם בלוק
Arabic
שם
ARABIC SMALL HIGH ZAIN

Programming

C
\u0617
JavaScript
\u0617
Java
\u0617
Json
\u0617
Python
\u0617
Perl
\x{0617}
PHP
\x{0617}
Ruby
\u{0617}
Rust
\u{617}
Go
\u0617

Web

CSS
\000617
HtmlDecimal
ؗ
HtmlHexadecimal
ؗ
Url
%D8%97

Code

MD5
fb5a7598a3f7f0b66aed2a44267587d6
Sha1
6a0ced565f11c13044ce107897fcf8aa4a727054
Base64
2Jc=

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u0617';
console.log(char);  // Output: ؗ

Java:

char c = '\u0617';
System.out.println(c);  // Output: ؗ

JSON:

{"text": "\u0617"}  // Value: ؗ

Python:

char = '\u0617'
print(char)  # Output: ؗ

Perl:

my $char = "\x{0617}";
print $char;  # Output: ؗ

PHP:

$char = "\x{0617}";
echo $char;  // Output: ؗ

Ruby:

char = "\u{0617}"
puts char  # Output: ؗ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000617";  /* Display: ؗ */
}

HTML Decimal:

<p>HTML decimal: &#1559;</p>  <!-- Display: ؗ -->

HTML Hexadecimal:

<p>HTML hex: &#x0617;</p>  <!-- Display: ؗ -->

URL Encoding:

// ؗ URL encoding
https://unicodefinder.com/search.php?query=%D8%97

Encodings

MD5:

fb5a7598a3f7f0b66aed2a44267587d6

SHA1:

6a0ced565f11c13044ce107897fcf8aa4a727054

Base64:

2Jc=