Unicode Finder

"ࡀ" U+0840(MANDAIC LETTER HALQA)

U+0840
Blok Adı
Mandaic
Ad
MANDAIC LETTER HALQA

Programming

C
\u0840
JavaScript
\u0840
Java
\u0840
Json
\u0840
Python
\u0840
Perl
\x{0840}
PHP
\x{0840}
Ruby
\u{0840}
Rust
\u{840}
Go
\u0840

Web

CSS
\000840
HtmlDecimal
ࡀ
HtmlHexadecimal
ࡀ
Url
%E0%A1%80

Code

MD5
4f0336cb4669507c48d229231b2c1d9c
Sha1
2ad7ca1554ed7189b01365d982ffac6a911ce553
Base64
4KGA

Kullanım Örnekleri

Programming Languages

C:

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

JavaScript:

const char = '\u0840';
console.log(char);  // Output: ࡀ

Java:

char c = '\u0840';
System.out.println(c);  // Output: ࡀ

JSON:

{"text": "\u0840"}  // Value: ࡀ

Python:

char = '\u0840'
print(char)  # Output: ࡀ

Perl:

my $char = "\x{0840}";
print $char;  # Output: ࡀ

PHP:

$char = "\x{0840}";
echo $char;  // Output: ࡀ

Ruby:

char = "\u{0840}"
puts char  # Output: ࡀ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000840";  /* Display: ࡀ */
}

HTML Decimal:

<p>HTML decimal: &#2112;</p>  <!-- Display: ࡀ -->

HTML Hexadecimal:

<p>HTML hex: &#x0840;</p>  <!-- Display: ࡀ -->

URL Encoding:

// ࡀ URL encoding
https://unicodefinder.com/search.php?query=%E0%A1%80

Encodings

MD5:

4f0336cb4669507c48d229231b2c1d9c

SHA1:

2ad7ca1554ed7189b01365d982ffac6a911ce553

Base64:

4KGA