C:
char c = '\u0412';
printf("%c\n", c); // Output: В
JavaScript:
const char = '\u0412';
console.log(char); // Output: В
Java:
char c = '\u0412';
System.out.println(c); // Output: В
JSON:
{"text": "\u0412"} // Value: В
Python:
char = '\u0412'
print(char) # Output: В
Perl:
my $char = "\x{0412}";
print $char; # Output: В
PHP:
$char = "\x{0412}";
echo $char; // Output: В
Ruby:
char = "\u{0412}"
puts char # Output: В
Rust:
let c = '\u{412}';
println!("{}", c); // Output: В
Go:
char := '\u0412'
fmt.Printf("%c\n", char) // Output: В
CSS:
/* CSS content property */
.element::before {
content: "\000412"; /* 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%92
MD5:
aee26eef8e5cccffba1091b226674940
SHA1:
b25cd718340a88fec094ab8c5fe7fcaef55a1d92
Base64:
0JI=