C:
char c = '\u0441';
printf("%c\n", c); // Output: с
JavaScript:
const char = '\u0441';
console.log(char); // Output: с
Java:
char c = '\u0441';
System.out.println(c); // Output: с
JSON:
{"text": "\u0441"} // Value: с
Python:
char = '\u0441'
print(char) # Output: с
Perl:
my $char = "\x{0441}";
print $char; # Output: с
PHP:
$char = "\x{0441}";
echo $char; // Output: с
Ruby:
char = "\u{0441}"
puts char # Output: с
Rust:
let c = '\u{441}';
println!("{}", c); // Output: с
Go:
char := '\u0441'
fmt.Printf("%c\n", char) // Output: с
CSS:
/* CSS content property */
.element::before {
content: "\000441"; /* 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=%D1%81
MD5:
91b2417d13d076fabf08a2684f817476
SHA1:
b40bbca36d2d172e26ef39be5537d9ecbf04546d
Base64:
0YE=