Unicode Finder

"݈" U+0748(SYRIAC OBLIQUE LINE BELOW)

݈
U+0748
بلاک کا نام
Syriac
نام
SYRIAC OBLIQUE LINE BELOW

Programming

C
\u0748
JavaScript
\u0748
Java
\u0748
Json
\u0748
Python
\u0748
Perl
\x{0748}
PHP
\x{0748}
Ruby
\u{0748}
Rust
\u{748}
Go
\u0748

Web

CSS
\000748
HtmlDecimal
݈
HtmlHexadecimal
݈
Url
%DD%88

Code

MD5
94de40eae09ab447f88478692c0a3851
Sha1
e0b83234248d09f192efc1621e9c50dc77641417
Base64
3Yg=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0748';
console.log(char);  // Output: ݈

Java:

char c = '\u0748';
System.out.println(c);  // Output: ݈

JSON:

{"text": "\u0748"}  // Value: ݈

Python:

char = '\u0748'
print(char)  # Output: ݈

Perl:

my $char = "\x{0748}";
print $char;  # Output: ݈

PHP:

$char = "\x{0748}";
echo $char;  // Output: ݈

Ruby:

char = "\u{0748}"
puts char  # Output: ݈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000748";  /* Display: ݈ */
}

HTML Decimal:

<p>HTML decimal: &#1864;</p>  <!-- Display: ݈ -->

HTML Hexadecimal:

<p>HTML hex: &#x0748;</p>  <!-- Display: ݈ -->

URL Encoding:

// ݈ URL encoding
https://unicodefinder.com/search.php?query=%DD%88

Encodings

MD5:

94de40eae09ab447f88478692c0a3851

SHA1:

e0b83234248d09f192efc1621e9c50dc77641417

Base64:

3Yg=