C:
char c = '\u0545';
printf("%c\n", c); // Output: Յ
JavaScript:
const char = '\u0545';
console.log(char); // Output: Յ
Java:
char c = '\u0545';
System.out.println(c); // Output: Յ
JSON:
{"text": "\u0545"} // Value: Յ
Python:
char = '\u0545'
print(char) # Output: Յ
Perl:
my $char = "\x{0545}";
print $char; # Output: Յ
PHP:
$char = "\x{0545}";
echo $char; // Output: Յ
Ruby:
char = "\u{0545}"
puts char # Output: Յ
Rust:
let c = '\u{545}';
println!("{}", c); // Output: Յ
Go:
char := '\u0545'
fmt.Printf("%c\n", char) // Output: Յ
CSS:
/* CSS content property */
.element::before {
content: "\000545"; /* 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%85
MD5:
b964e4bafa8de9197e52f1f8dc5f942b
SHA1:
23f2a2aeb90852000a0968f648f07e9da2e845c9
Base64:
1YU=