C:
char c = '\u0406';
printf("%c\n", c); // Output: І
JavaScript:
const char = '\u0406';
console.log(char); // Output: І
Java:
char c = '\u0406';
System.out.println(c); // Output: І
JSON:
{"text": "\u0406"} // Value: І
Python:
char = '\u0406'
print(char) # Output: І
Perl:
my $char = "\x{0406}";
print $char; # Output: І
PHP:
$char = "\x{0406}";
echo $char; // Output: І
Ruby:
char = "\u{0406}"
puts char # Output: І
Rust:
let c = '\u{406}';
println!("{}", c); // Output: І
Go:
char := '\u0406'
fmt.Printf("%c\n", char) // Output: І
CSS:
/* CSS content property */
.element::before {
content: "\000406"; /* 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%86
MD5:
e3b4a0055a99bb03cf3f3b1ddfb5d0ca
SHA1:
df9c3287bcdc1b0fc5627d611ab7730be81d6b50
Base64:
0IY=