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: ե
CSS:
/* CSS content property */
.element::before {
content: "\000565"; /* Display: ե */
}
HTML Decimal:
<p>HTML decimal: ե</p> <!-- Display: ե -->
HTML Hexadecimal:
<p>HTML hex: ե</p> <!-- Display: ե -->
URL Encoding:
// ե URL encoding
https://unicodefinder.com/search.php?query=%D5%A5
MD5:
bf4e36404c8c594852d7efa913b9a784
SHA1:
318aabf8931fe8f0256c3bdf65c4ea1ec10dee2d
Base64:
1aU=