C:
char c = '\u0336';
printf("%c\n", c); // Output: ̶
JavaScript:
const char = '\u0336';
console.log(char); // Output: ̶
Java:
char c = '\u0336';
System.out.println(c); // Output: ̶
JSON:
{"text": "\u0336"} // Value: ̶
Python:
char = '\u0336'
print(char) # Output: ̶
Perl:
my $char = "\x{0336}";
print $char; # Output: ̶
PHP:
$char = "\x{0336}";
echo $char; // Output: ̶
Ruby:
char = "\u{0336}"
puts char # Output: ̶
Rust:
let c = '\u{336}';
println!("{}", c); // Output: ̶
Go:
char := '\u0336'
fmt.Printf("%c\n", char) // Output: ̶
CSS:
/* CSS content property */
.element::before {
content: "\000336"; /* 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=%CC%B6
MD5:
4a812ae51dad5fa6a59d053577a7aa8a
SHA1:
d8699d8937a97955c38d55aa3f93ea8454c90ae3
Base64:
zLY=