Unicode Finder

"؉" U+0609(ARABIC-INDIC PER MILLE SIGN)

؉
U+0609
שם בלוק
Arabic
שם
ARABIC-INDIC PER MILLE SIGN

Programming

C
\u0609
JavaScript
\u0609
Java
\u0609
Json
\u0609
Python
\u0609
Perl
\x{0609}
PHP
\x{0609}
Ruby
\u{0609}
Rust
\u{609}
Go
\u0609

Web

CSS
\000609
HtmlDecimal
؉
HtmlHexadecimal
؉
Url
%D8%89

Code

MD5
f32d7525c0a7fb464a580ab7a84ce0e2
Sha1
c64ba4e07ca41c11cfe56b73a2447cce540cd9ff
Base64
2Ik=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0609';
console.log(char);  // Output: ؉

Java:

char c = '\u0609';
System.out.println(c);  // Output: ؉

JSON:

{"text": "\u0609"}  // Value: ؉

Python:

char = '\u0609'
print(char)  # Output: ؉

Perl:

my $char = "\x{0609}";
print $char;  # Output: ؉

PHP:

$char = "\x{0609}";
echo $char;  // Output: ؉

Ruby:

char = "\u{0609}"
puts char  # Output: ؉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000609";  /* Display: ؉ */
}

HTML Decimal:

<p>HTML decimal: &#1545;</p>  <!-- Display: ؉ -->

HTML Hexadecimal:

<p>HTML hex: &#x0609;</p>  <!-- Display: ؉ -->

URL Encoding:

// ؉ URL encoding
https://unicodefinder.com/search.php?query=%D8%89

Encodings

MD5:

f32d7525c0a7fb464a580ab7a84ce0e2

SHA1:

c64ba4e07ca41c11cfe56b73a2447cce540cd9ff

Base64:

2Ik=