Unicode Finder

"܇" U+0707(SYRIAC COLON SKEWED RIGHT)

܇
U+0707
بلاک کا نام
Syriac
نام
SYRIAC COLON SKEWED RIGHT

Programming

C
\u0707
JavaScript
\u0707
Java
\u0707
Json
\u0707
Python
\u0707
Perl
\x{0707}
PHP
\x{0707}
Ruby
\u{0707}
Rust
\u{707}
Go
\u0707

Web

CSS
\000707
HtmlDecimal
܇
HtmlHexadecimal
܇
Url
%DC%87

Code

MD5
d3268232046b0d29d153bc2af1ff8220
Sha1
be87efa4c94211a875229709caa5b6dcd23f5e88
Base64
3Ic=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0707';
console.log(char);  // Output: ܇

Java:

char c = '\u0707';
System.out.println(c);  // Output: ܇

JSON:

{"text": "\u0707"}  // Value: ܇

Python:

char = '\u0707'
print(char)  # Output: ܇

Perl:

my $char = "\x{0707}";
print $char;  # Output: ܇

PHP:

$char = "\x{0707}";
echo $char;  // Output: ܇

Ruby:

char = "\u{0707}"
puts char  # Output: ܇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000707";  /* Display: ܇ */
}

HTML Decimal:

<p>HTML decimal: &#1799;</p>  <!-- Display: ܇ -->

HTML Hexadecimal:

<p>HTML hex: &#x0707;</p>  <!-- Display: ܇ -->

URL Encoding:

// ܇ URL encoding
https://unicodefinder.com/search.php?query=%DC%87

Encodings

MD5:

d3268232046b0d29d153bc2af1ff8220

SHA1:

be87efa4c94211a875229709caa5b6dcd23f5e88

Base64:

3Ic=