C:
char c = '\u0148';
printf("%c\n", c); // Output: ň
JavaScript:
const char = '\u0148';
console.log(char); // Output: ň
Java:
char c = '\u0148';
System.out.println(c); // Output: ň
JSON:
{"text": "\u0148"} // Value: ň
Python:
char = '\u0148'
print(char) # Output: ň
Perl:
my $char = "\x{0148}";
print $char; # Output: ň
PHP:
$char = "\x{0148}";
echo $char; // Output: ň
Ruby:
char = "\u{0148}"
puts char # Output: ň
Rust:
let c = '\u{148}';
println!("{}", c); // Output: ň
Go:
char := '\u0148'
fmt.Printf("%c\n", char) // Output: ň
CSS:
/* CSS content property */
.element::before {
content: "\000148"; /* 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%88
MD5:
87922c6d411680ef435641ce9d528b9f
SHA1:
d7a7f55db27fe335e7fcc669ee0abb6c3e448d3e
Base64:
xYg=