Unicode Finder

"؍" U+060D(ARABIC DATE SEPARATOR)

؍
U+060D
שם בלוק
Arabic
שם
ARABIC DATE SEPARATOR

Programming

C
\u060D
JavaScript
\u060D
Java
\u060D
Json
\u060D
Python
\u060D
Perl
\x{060D}
PHP
\x{060D}
Ruby
\u{060D}
Rust
\u{60D}
Go
\u060D

Web

CSS
\00060D
HtmlDecimal
؍
HtmlHexadecimal
؍
Url
%D8%8D

Code

MD5
e1d67ab15202353eeabb6f6e0d429063
Sha1
b2d55945e3d4ff77ac894a2d9f9caa6a04e4a468
Base64
2I0=

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

Programming Languages

C:

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

JavaScript:

const char = '\u060D';
console.log(char);  // Output: ؍

Java:

char c = '\u060D';
System.out.println(c);  // Output: ؍

JSON:

{"text": "\u060D"}  // Value: ؍

Python:

char = '\u060D'
print(char)  # Output: ؍

Perl:

my $char = "\x{060D}";
print $char;  # Output: ؍

PHP:

$char = "\x{060D}";
echo $char;  // Output: ؍

Ruby:

char = "\u{060D}"
puts char  # Output: ؍

Rust:

let c = '\u{60D}';
println!("{}", c);  // Output: ؍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00060D";  /* Display: ؍ */
}

HTML Decimal:

<p>HTML decimal: &#1549;</p>  <!-- Display: ؍ -->

HTML Hexadecimal:

<p>HTML hex: &#x060D;</p>  <!-- Display: ؍ -->

URL Encoding:

// ؍ URL encoding
https://unicodefinder.com/search.php?query=%D8%8D

Encodings

MD5:

e1d67ab15202353eeabb6f6e0d429063

SHA1:

b2d55945e3d4ff77ac894a2d9f9caa6a04e4a468

Base64:

2I0=