C:
char c = '\u0175';
printf("%c\n", c); // Output: ŵ
JavaScript:
const char = '\u0175';
console.log(char); // Output: ŵ
Java:
char c = '\u0175';
System.out.println(c); // Output: ŵ
JSON:
{"text": "\u0175"} // Value: ŵ
Python:
char = '\u0175'
print(char) # Output: ŵ
Perl:
my $char = "\x{0175}";
print $char; # Output: ŵ
PHP:
$char = "\x{0175}";
echo $char; // Output: ŵ
Ruby:
char = "\u{0175}"
puts char # Output: ŵ
Rust:
let c = '\u{175}';
println!("{}", c); // Output: ŵ
Go:
char := '\u0175'
fmt.Printf("%c\n", char) // Output: ŵ
CSS:
/* CSS content property */
.element::before {
content: "\000175"; /* 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%B5
MD5:
e75f37d4251e70b81018c91e801c8f3d
SHA1:
a7e125400a15011acba290b18484e79441e89bd9
Base64:
xbU=