Unicode Finder

"؈" U+0608(ARABIC RAY)

؈
U+0608
שם בלוק
Arabic
שם
ARABIC RAY

Programming

C
\u0608
JavaScript
\u0608
Java
\u0608
Json
\u0608
Python
\u0608
Perl
\x{0608}
PHP
\x{0608}
Ruby
\u{0608}
Rust
\u{608}
Go
\u0608

Web

CSS
\000608
HtmlDecimal
؈
HtmlHexadecimal
؈
Url
%D8%88

Code

MD5
5517f708e802a86f3a74d26ba4c86840
Sha1
dfe93b8f2f306d2c9a7e72064fd94aec766df60a
Base64
2Ig=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0608';
console.log(char);  // Output: ؈

Java:

char c = '\u0608';
System.out.println(c);  // Output: ؈

JSON:

{"text": "\u0608"}  // Value: ؈

Python:

char = '\u0608'
print(char)  # Output: ؈

Perl:

my $char = "\x{0608}";
print $char;  # Output: ؈

PHP:

$char = "\x{0608}";
echo $char;  // Output: ؈

Ruby:

char = "\u{0608}"
puts char  # Output: ؈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000608";  /* Display: ؈ */
}

HTML Decimal:

<p>HTML decimal: &#1544;</p>  <!-- Display: ؈ -->

HTML Hexadecimal:

<p>HTML hex: &#x0608;</p>  <!-- Display: ؈ -->

URL Encoding:

// ؈ URL encoding
https://unicodefinder.com/search.php?query=%D8%88

Encodings

MD5:

5517f708e802a86f3a74d26ba4c86840

SHA1:

dfe93b8f2f306d2c9a7e72064fd94aec766df60a

Base64:

2Ig=