C:
char c = '\u0438';
printf("%c\n", c); // Output: и
JavaScript:
const char = '\u0438';
console.log(char); // Output: и
Java:
char c = '\u0438';
System.out.println(c); // Output: и
JSON:
{"text": "\u0438"} // Value: и
Python:
char = '\u0438'
print(char) # Output: и
Perl:
my $char = "\x{0438}";
print $char; # Output: и
PHP:
$char = "\x{0438}";
echo $char; // Output: и
Ruby:
char = "\u{0438}"
puts char # Output: и
Rust:
let c = '\u{438}';
println!("{}", c); // Output: и
Go:
char := '\u0438'
fmt.Printf("%c\n", char) // Output: и
CSS:
/* CSS content property */
.element::before {
content: "\000438"; /* 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%B8
MD5:
4bfb6432d7bb214319efc6d48e31988d
SHA1:
a59e2c2429fe7a881f566ff87bafa6c5e37337d3
Base64:
0Lg=