C:
char c = '\u0411';
printf("%c\n", c); // Output: Б
JavaScript:
const char = '\u0411';
console.log(char); // Output: Б
Java:
char c = '\u0411';
System.out.println(c); // Output: Б
JSON:
{"text": "\u0411"} // Value: Б
Python:
char = '\u0411'
print(char) # Output: Б
Perl:
my $char = "\x{0411}";
print $char; # Output: Б
PHP:
$char = "\x{0411}";
echo $char; // Output: Б
Ruby:
char = "\u{0411}"
puts char # Output: Б
Rust:
let c = '\u{411}';
println!("{}", c); // Output: Б
Go:
char := '\u0411'
fmt.Printf("%c\n", char) // Output: Б
CSS:
/* CSS content property */
.element::before {
content: "\000411"; /* 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%91
MD5:
3b677eea8dd1941548035e3a66234b9d
SHA1:
923f9729007ec04a25d14439b6c5a2c55297f641
Base64:
0JE=