Unicode Finder

"ܸ" U+0738(SYRIAC DOTTED ZLAMA HORIZONTAL)

ܸ
U+0738
بلاک کا نام
Syriac
نام
SYRIAC DOTTED ZLAMA HORIZONTAL

Programming

C
\u0738
JavaScript
\u0738
Java
\u0738
Json
\u0738
Python
\u0738
Perl
\x{0738}
PHP
\x{0738}
Ruby
\u{0738}
Rust
\u{738}
Go
\u0738

Web

CSS
\000738
HtmlDecimal
ܸ
HtmlHexadecimal
ܸ
Url
%DC%B8

Code

MD5
197af199955c756856742b4bc55ccf27
Sha1
6dbbd4386d98401453b8d69faa8e03ea7c5af70f
Base64
3Lg=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0738';
console.log(char);  // Output: ܸ

Java:

char c = '\u0738';
System.out.println(c);  // Output: ܸ

JSON:

{"text": "\u0738"}  // Value: ܸ

Python:

char = '\u0738'
print(char)  # Output: ܸ

Perl:

my $char = "\x{0738}";
print $char;  # Output: ܸ

PHP:

$char = "\x{0738}";
echo $char;  // Output: ܸ

Ruby:

char = "\u{0738}"
puts char  # Output: ܸ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000738";  /* Display: ܸ */
}

HTML Decimal:

<p>HTML decimal: &#1848;</p>  <!-- Display: ܸ -->

HTML Hexadecimal:

<p>HTML hex: &#x0738;</p>  <!-- Display: ܸ -->

URL Encoding:

// ܸ URL encoding
https://unicodefinder.com/search.php?query=%DC%B8

Encodings

MD5:

197af199955c756856742b4bc55ccf27

SHA1:

6dbbd4386d98401453b8d69faa8e03ea7c5af70f

Base64:

3Lg=