C:
char c = '\u0145';
printf("%c\n", c); // Output: Ņ
JavaScript:
const char = '\u0145';
console.log(char); // Output: Ņ
Java:
char c = '\u0145';
System.out.println(c); // Output: Ņ
JSON:
{"text": "\u0145"} // Value: Ņ
Python:
char = '\u0145'
print(char) # Output: Ņ
Perl:
my $char = "\x{0145}";
print $char; # Output: Ņ
PHP:
$char = "\x{0145}";
echo $char; // Output: Ņ
Ruby:
char = "\u{0145}"
puts char # Output: Ņ
Rust:
let c = '\u{145}';
println!("{}", c); // Output: Ņ
Go:
char := '\u0145'
fmt.Printf("%c\n", char) // Output: Ņ
CSS:
/* CSS content property */
.element::before {
content: "\000145"; /* 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=%C5%85
MD5:
f6e10f1d92cd4a256a3c39dd968aac58
SHA1:
9e26bd75fa3eb01aa80db8aaddf887cd693b12d7
Base64:
xYU=