Unicode Finder

"܈" U+0708(SYRIAC SUPRALINEAR COLON SKEWED LEFT)

܈
U+0708
بلاک کا نام
Syriac
نام
SYRIAC SUPRALINEAR COLON SKEWED LEFT

Programming

C
\u0708
JavaScript
\u0708
Java
\u0708
Json
\u0708
Python
\u0708
Perl
\x{0708}
PHP
\x{0708}
Ruby
\u{0708}
Rust
\u{708}
Go
\u0708

Web

CSS
\000708
HtmlDecimal
܈
HtmlHexadecimal
܈
Url
%DC%88

Code

MD5
1823465fcc4304e5aa2fbe42ed734548
Sha1
d82b2cd7ec88ec9a14c21d5d28d7f698ac84eb9f
Base64
3Ig=

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u0708';
console.log(char);  // Output: ܈

Java:

char c = '\u0708';
System.out.println(c);  // Output: ܈

JSON:

{"text": "\u0708"}  // Value: ܈

Python:

char = '\u0708'
print(char)  # Output: ܈

Perl:

my $char = "\x{0708}";
print $char;  # Output: ܈

PHP:

$char = "\x{0708}";
echo $char;  // Output: ܈

Ruby:

char = "\u{0708}"
puts char  # Output: ܈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000708";  /* Display: ܈ */
}

HTML Decimal:

<p>HTML decimal: &#1800;</p>  <!-- Display: ܈ -->

HTML Hexadecimal:

<p>HTML hex: &#x0708;</p>  <!-- Display: ܈ -->

URL Encoding:

// ܈ URL encoding
https://unicodefinder.com/search.php?query=%DC%88

Encodings

MD5:

1823465fcc4304e5aa2fbe42ed734548

SHA1:

d82b2cd7ec88ec9a14c21d5d28d7f698ac84eb9f

Base64:

3Ig=