C:
char c = '\u0417';
printf("%c\n", c); // Output: З
JavaScript:
const char = '\u0417';
console.log(char); // Output: З
Java:
char c = '\u0417';
System.out.println(c); // Output: З
JSON:
{"text": "\u0417"} // Value: З
Python:
char = '\u0417'
print(char) # Output: З
Perl:
my $char = "\x{0417}";
print $char; # Output: З
PHP:
$char = "\x{0417}";
echo $char; // Output: З
Ruby:
char = "\u{0417}"
puts char # Output: З
Rust:
let c = '\u{417}';
println!("{}", c); // Output: З
Go:
char := '\u0417'
fmt.Printf("%c\n", char) // Output: З
CSS:
/* CSS content property */
.element::before {
content: "\000417"; /* 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=%D0%97
MD5:
e7d28aeb85e23a5b4a1cbf97e024a82b
SHA1:
a9d7eb8d45273eb7b4ae53b950517d6f3cc38a9e
Base64:
0Jc=