C:
char c = '\u0536';
printf("%c\n", c); // Output: Զ
JavaScript:
const char = '\u0536';
console.log(char); // Output: Զ
Java:
char c = '\u0536';
System.out.println(c); // Output: Զ
JSON:
{"text": "\u0536"} // Value: Զ
Python:
char = '\u0536'
print(char) # Output: Զ
Perl:
my $char = "\x{0536}";
print $char; # Output: Զ
PHP:
$char = "\x{0536}";
echo $char; // Output: Զ
Ruby:
char = "\u{0536}"
puts char # Output: Զ
Rust:
let c = '\u{536}';
println!("{}", c); // Output: Զ
Go:
char := '\u0536'
fmt.Printf("%c\n", char) // Output: Զ
CSS:
/* CSS content property */
.element::before {
content: "\000536"; /* 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%B6
MD5:
1c9dbe8b9e8656f2660cb33309dd446e
SHA1:
de824361af6ba74465f03df36bb44a1777fcb24c
Base64:
1LY=