C:
char c = '\u0572';
printf("%c\n", c); // Output: ղ
JavaScript:
const char = '\u0572';
console.log(char); // Output: ղ
Java:
char c = '\u0572';
System.out.println(c); // Output: ղ
JSON:
{"text": "\u0572"} // Value: ղ
Python:
char = '\u0572'
print(char) # Output: ղ
Perl:
my $char = "\x{0572}";
print $char; # Output: ղ
PHP:
$char = "\x{0572}";
echo $char; // Output: ղ
Ruby:
char = "\u{0572}"
puts char # Output: ղ
Rust:
let c = '\u{572}';
println!("{}", c); // Output: ղ
Go:
char := '\u0572'
fmt.Printf("%c\n", char) // Output: ղ
CSS:
/* CSS content property */
.element::before {
content: "\000572"; /* 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%B2
MD5:
e6852385a6261da83bcfcfae4e70d242
SHA1:
5634ebacd758329e68fd05ccc529f0f40ae9a2dd
Base64:
1bI=