Unicode Finder

"ե" U+0565(ARMENIAN SMALL LETTER ECH)

ե
U+0565
ชื่อบล็อก
Armenian
ชื่อ
ARMENIAN SMALL LETTER ECH

Programming

C
\u0565
JavaScript
\u0565
Java
\u0565
Json
\u0565
Python
\u0565
Perl
\x{0565}
PHP
\x{0565}
Ruby
\u{0565}
Rust
\u{565}
Go
\u0565

Web

CSS
\000565
HtmlDecimal
ե
HtmlHexadecimal
ե
Url
%D5%A5

Code

MD5
bf4e36404c8c594852d7efa913b9a784
Sha1
318aabf8931fe8f0256c3bdf65c4ea1ec10dee2d
Base64
1aU=

ตัวอย่างการใช้งาน

Programming Languages

C:

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

JavaScript:

const char = '\u0565';
console.log(char);  // Output: ե

Java:

char c = '\u0565';
System.out.println(c);  // Output: ե

JSON:

{"text": "\u0565"}  // Value: ե

Python:

char = '\u0565'
print(char)  # Output: ե

Perl:

my $char = "\x{0565}";
print $char;  # Output: ե

PHP:

$char = "\x{0565}";
echo $char;  // Output: ե

Ruby:

char = "\u{0565}"
puts char  # Output: ե

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000565";  /* Display: ե */
}

HTML Decimal:

<p>HTML decimal: &#1381;</p>  <!-- Display: ե -->

HTML Hexadecimal:

<p>HTML hex: &#x0565;</p>  <!-- Display: ե -->

URL Encoding:

// ե URL encoding
https://unicodefinder.com/search.php?query=%D5%A5

Encodings

MD5:

bf4e36404c8c594852d7efa913b9a784

SHA1:

318aabf8931fe8f0256c3bdf65c4ea1ec10dee2d

Base64:

1aU=