C:
char c = '\u0173';
printf("%c\n", c); // Output: ų
JavaScript:
const char = '\u0173';
console.log(char); // Output: ų
Java:
char c = '\u0173';
System.out.println(c); // Output: ų
JSON:
{"text": "\u0173"} // Value: ų
Python:
char = '\u0173'
print(char) # Output: ų
Perl:
my $char = "\x{0173}";
print $char; # Output: ų
PHP:
$char = "\x{0173}";
echo $char; // Output: ų
Ruby:
char = "\u{0173}"
puts char # Output: ų
Rust:
let c = '\u{173}';
println!("{}", c); // Output: ų
Go:
char := '\u0173'
fmt.Printf("%c\n", char) // Output: ų
CSS:
/* CSS content property */
.element::before {
content: "\000173"; /* 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%B3
MD5:
ebe4885906e9661a955b63355aba6d5d
SHA1:
13f9a68382fcfefb3d3ad1b30413a87a1d60f47e
Base64:
xbM=