Unicode Finder

"յ" U+0575(ARMENIAN SMALL LETTER YI)

յ
U+0575
ব্লক নাম
Armenian
নাম
ARMENIAN SMALL LETTER YI

Programming

C
\u0575
JavaScript
\u0575
Java
\u0575
Json
\u0575
Python
\u0575
Perl
\x{0575}
PHP
\x{0575}
Ruby
\u{0575}
Rust
\u{575}
Go
\u0575

Web

CSS
\000575
HtmlDecimal
յ
HtmlHexadecimal
յ
Url
%D5%B5

Code

MD5
d4df214f29b8f72fd3486dc2212f1667
Sha1
9fb6eecf9e89d239de4ed4acebb71ed2c0d60fd0
Base64
1bU=

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u0575';
console.log(char);  // Output: յ

Java:

char c = '\u0575';
System.out.println(c);  // Output: յ

JSON:

{"text": "\u0575"}  // Value: յ

Python:

char = '\u0575'
print(char)  # Output: յ

Perl:

my $char = "\x{0575}";
print $char;  # Output: յ

PHP:

$char = "\x{0575}";
echo $char;  // Output: յ

Ruby:

char = "\u{0575}"
puts char  # Output: յ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000575";  /* Display: յ */
}

HTML Decimal:

<p>HTML decimal: &#1397;</p>  <!-- Display: յ -->

HTML Hexadecimal:

<p>HTML hex: &#x0575;</p>  <!-- Display: յ -->

URL Encoding:

// յ URL encoding
https://unicodefinder.com/search.php?query=%D5%B5

Encodings

MD5:

d4df214f29b8f72fd3486dc2212f1667

SHA1:

9fb6eecf9e89d239de4ed4acebb71ed2c0d60fd0

Base64:

1bU=