C:
char c = '\u0418';
printf("%c\n", c); // Output: И
JavaScript:
const char = '\u0418';
console.log(char); // Output: И
Java:
char c = '\u0418';
System.out.println(c); // Output: И
JSON:
{"text": "\u0418"} // Value: И
Python:
char = '\u0418'
print(char) # Output: И
Perl:
my $char = "\x{0418}";
print $char; # Output: И
PHP:
$char = "\x{0418}";
echo $char; // Output: И
Ruby:
char = "\u{0418}"
puts char # Output: И
Rust:
let c = '\u{418}';
println!("{}", c); // Output: И
Go:
char := '\u0418'
fmt.Printf("%c\n", char) // Output: И
CSS:
/* CSS content property */
.element::before {
content: "\000418"; /* 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%98
MD5:
894b726c413c230f31e19658e70f6caf
SHA1:
2c6cbba7ca20d02c499d25d5b60a779c8fe5974c
Base64:
0Jg=