C:
char c = '\u0421';
printf("%c\n", c); // Output: С
JavaScript:
const char = '\u0421';
console.log(char); // Output: С
Java:
char c = '\u0421';
System.out.println(c); // Output: С
JSON:
{"text": "\u0421"} // Value: С
Python:
char = '\u0421'
print(char) # Output: С
Perl:
my $char = "\x{0421}";
print $char; # Output: С
PHP:
$char = "\x{0421}";
echo $char; // Output: С
Ruby:
char = "\u{0421}"
puts char # Output: С
Rust:
let c = '\u{421}';
println!("{}", c); // Output: С
Go:
char := '\u0421'
fmt.Printf("%c\n", char) // Output: С
CSS:
/* CSS content property */
.element::before {
content: "\000421"; /* 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%A1
MD5:
b3f907c04a31f371eafacd3ab644c27c
SHA1:
67bbe9f7599fe8bbcb9dbc99e2d436b254233966
Base64:
0KE=