C:
char c = '\u0456';
printf("%c\n", c); // Output: і
JavaScript:
const char = '\u0456';
console.log(char); // Output: і
Java:
char c = '\u0456';
System.out.println(c); // Output: і
JSON:
{"text": "\u0456"} // Value: і
Python:
char = '\u0456'
print(char) # Output: і
Perl:
my $char = "\x{0456}";
print $char; # Output: і
PHP:
$char = "\x{0456}";
echo $char; // Output: і
Ruby:
char = "\u{0456}"
puts char # Output: і
Rust:
let c = '\u{456}';
println!("{}", c); // Output: і
Go:
char := '\u0456'
fmt.Printf("%c\n", char) // Output: і
CSS:
/* CSS content property */
.element::before {
content: "\000456"; /* 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=%D1%96
MD5:
bd7f6143210c0b883a6ce53252efcda5
SHA1:
9184981607850c0917366c38cd4236e6062beee2
Base64:
0ZY=