C:
char c = '\u0566';
printf("%c\n", c); // Output: զ
JavaScript:
const char = '\u0566';
console.log(char); // Output: զ
Java:
char c = '\u0566';
System.out.println(c); // Output: զ
JSON:
{"text": "\u0566"} // Value: զ
Python:
char = '\u0566'
print(char) # Output: զ
Perl:
my $char = "\x{0566}";
print $char; # Output: զ
PHP:
$char = "\x{0566}";
echo $char; // Output: զ
Ruby:
char = "\u{0566}"
puts char # Output: զ
Rust:
let c = '\u{566}';
println!("{}", c); // Output: զ
Go:
char := '\u0566'
fmt.Printf("%c\n", char) // Output: զ
CSS:
/* CSS content property */
.element::before {
content: "\000566"; /* 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%A6
MD5:
859dc90f2a194d811be3ed3fd797196e
SHA1:
69b9e4e6e5ee0ea1960a69bb2a68962770608bad
Base64:
1aY=