C:
char c = '\u0144';
printf("%c\n", c); // Output: ń
JavaScript:
const char = '\u0144';
console.log(char); // Output: ń
Java:
char c = '\u0144';
System.out.println(c); // Output: ń
JSON:
{"text": "\u0144"} // Value: ń
Python:
char = '\u0144'
print(char) # Output: ń
Perl:
my $char = "\x{0144}";
print $char; # Output: ń
PHP:
$char = "\x{0144}";
echo $char; // Output: ń
Ruby:
char = "\u{0144}"
puts char # Output: ń
Rust:
let c = '\u{144}';
println!("{}", c); // Output: ń
Go:
char := '\u0144'
fmt.Printf("%c\n", char) // Output: ń
CSS:
/* CSS content property */
.element::before {
content: "\000144"; /* 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%84
MD5:
9288158337df85f760d1d85b41c97201
SHA1:
81102e3aedb301f3892e4961589ce1b56f33393c
Base64:
xYQ=