Unicode Finder

"ձ" U+0571(ARMENIAN SMALL LETTER JA)

ձ
U+0571
Назва Блоку
Armenian
Назва
ARMENIAN SMALL LETTER JA

Programming

C
\u0571
JavaScript
\u0571
Java
\u0571
Json
\u0571
Python
\u0571
Perl
\x{0571}
PHP
\x{0571}
Ruby
\u{0571}
Rust
\u{571}
Go
\u0571

Web

CSS
\000571
HtmlDecimal
ձ
HtmlHexadecimal
ձ
Url
%D5%B1

Code

MD5
11a10daebb6676eb6394ec97f0da461a
Sha1
3b9165255db46fec758209c71314b04cb03b0a49
Base64
1bE=

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u0571';
console.log(char);  // Output: ձ

Java:

char c = '\u0571';
System.out.println(c);  // Output: ձ

JSON:

{"text": "\u0571"}  // Value: ձ

Python:

char = '\u0571'
print(char)  # Output: ձ

Perl:

my $char = "\x{0571}";
print $char;  # Output: ձ

PHP:

$char = "\x{0571}";
echo $char;  // Output: ձ

Ruby:

char = "\u{0571}"
puts char  # Output: ձ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000571";  /* Display: ձ */
}

HTML Decimal:

<p>HTML decimal: &#1393;</p>  <!-- Display: ձ -->

HTML Hexadecimal:

<p>HTML hex: &#x0571;</p>  <!-- Display: ձ -->

URL Encoding:

// ձ URL encoding
https://unicodefinder.com/search.php?query=%D5%B1

Encodings

MD5:

11a10daebb6676eb6394ec97f0da461a

SHA1:

3b9165255db46fec758209c71314b04cb03b0a49

Base64:

1bE=