Unicode Finder

"ࠩ" U+0829(SAMARITAN VOWEL SIGN LONG I)

U+0829
نام بلوک
Samaritan
نام
SAMARITAN VOWEL SIGN LONG I

Programming

C
\u0829
JavaScript
\u0829
Java
\u0829
Json
\u0829
Python
\u0829
Perl
\x{0829}
PHP
\x{0829}
Ruby
\u{0829}
Rust
\u{829}
Go
\u0829

Web

CSS
\000829
HtmlDecimal
ࠩ
HtmlHexadecimal
ࠩ
Url
%E0%A0%A9

Code

MD5
2823db7baf663c90f903ce54d50b2ea5
Sha1
d66ab43a74189cb8618c881d99036bd14284c544
Base64
4KCp

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u0829';
console.log(char);  // Output: ࠩ

Java:

char c = '\u0829';
System.out.println(c);  // Output: ࠩ

JSON:

{"text": "\u0829"}  // Value: ࠩ

Python:

char = '\u0829'
print(char)  # Output: ࠩ

Perl:

my $char = "\x{0829}";
print $char;  # Output: ࠩ

PHP:

$char = "\x{0829}";
echo $char;  // Output: ࠩ

Ruby:

char = "\u{0829}"
puts char  # Output: ࠩ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000829";  /* Display: ࠩ */
}

HTML Decimal:

<p>HTML decimal: &#2089;</p>  <!-- Display: ࠩ -->

HTML Hexadecimal:

<p>HTML hex: &#x0829;</p>  <!-- Display: ࠩ -->

URL Encoding:

// ࠩ URL encoding
https://unicodefinder.com/search.php?query=%E0%A0%A9

Encodings

MD5:

2823db7baf663c90f903ce54d50b2ea5

SHA1:

d66ab43a74189cb8618c881d99036bd14284c544

Base64:

4KCp