C:
char c = '\u053C';
printf("%c\n", c); // Output: Լ
JavaScript:
const char = '\u053C';
console.log(char); // Output: Լ
Java:
char c = '\u053C';
System.out.println(c); // Output: Լ
JSON:
{"text": "\u053C"} // Value: Լ
Python:
char = '\u053C'
print(char) # Output: Լ
Perl:
my $char = "\x{053C}";
print $char; # Output: Լ
PHP:
$char = "\x{053C}";
echo $char; // Output: Լ
Ruby:
char = "\u{053C}"
puts char # Output: Լ
Rust:
let c = '\u{53C}';
println!("{}", c); // Output: Լ
Go:
char := '\u053C'
fmt.Printf("%c\n", char) // Output: Լ
CSS:
/* CSS content property */
.element::before {
content: "\00053C"; /* 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=%D4%BC
MD5:
7a8d67b2a2698bd0fc366dc3fd2048c6
SHA1:
1d417b273193fd261073db37a1e529cf6665571d
Base64:
1Lw=