C:
char c = '\u040A';
printf("%c\n", c); // Output: Њ
JavaScript:
const char = '\u040A';
console.log(char); // Output: Њ
Java:
char c = '\u040A';
System.out.println(c); // Output: Њ
JSON:
{"text": "\u040A"} // Value: Њ
Python:
char = '\u040A'
print(char) # Output: Њ
Perl:
my $char = "\x{040A}";
print $char; # Output: Њ
PHP:
$char = "\x{040A}";
echo $char; // Output: Њ
Ruby:
char = "\u{040A}"
puts char # Output: Њ
Rust:
let c = '\u{40A}';
println!("{}", c); // Output: Њ
Go:
char := '\u040A'
fmt.Printf("%c\n", char) // Output: Њ
CSS:
/* CSS content property */
.element::before {
content: "\00040A"; /* 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%8A
MD5:
ddb2088a09dbe0595020ccf6840f4a70
SHA1:
5ee9e793c71053becebab359a7b51b6ba51b2c99
Base64:
0Io=