Unicode Finder

"݃" U+0743(SYRIAC TWO VERTICAL DOTS ABOVE)

݃
U+0743
بلاک کا نام
Syriac
نام
SYRIAC TWO VERTICAL DOTS ABOVE

Programming

C
\u0743
JavaScript
\u0743
Java
\u0743
Json
\u0743
Python
\u0743
Perl
\x{0743}
PHP
\x{0743}
Ruby
\u{0743}
Rust
\u{743}
Go
\u0743

Web

CSS
\000743
HtmlDecimal
݃
HtmlHexadecimal
݃
Url
%DD%83

Code

MD5
a44577fd7525b848dcd95ae3edac9801
Sha1
5d8ad89681688be1be9ea6671fbe5071af75d984
Base64
3YM=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0743';
console.log(char);  // Output: ݃

Java:

char c = '\u0743';
System.out.println(c);  // Output: ݃

JSON:

{"text": "\u0743"}  // Value: ݃

Python:

char = '\u0743'
print(char)  # Output: ݃

Perl:

my $char = "\x{0743}";
print $char;  # Output: ݃

PHP:

$char = "\x{0743}";
echo $char;  // Output: ݃

Ruby:

char = "\u{0743}"
puts char  # Output: ݃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000743";  /* Display: ݃ */
}

HTML Decimal:

<p>HTML decimal: &#1859;</p>  <!-- Display: ݃ -->

HTML Hexadecimal:

<p>HTML hex: &#x0743;</p>  <!-- Display: ݃ -->

URL Encoding:

// ݃ URL encoding
https://unicodefinder.com/search.php?query=%DD%83

Encodings

MD5:

a44577fd7525b848dcd95ae3edac9801

SHA1:

5d8ad89681688be1be9ea6671fbe5071af75d984

Base64:

3YM=