C:
char c = '\u0338';
printf("%c\n", c); // Output: ̸
JavaScript:
const char = '\u0338';
console.log(char); // Output: ̸
Java:
char c = '\u0338';
System.out.println(c); // Output: ̸
JSON:
{"text": "\u0338"} // Value: ̸
Python:
char = '\u0338'
print(char) # Output: ̸
Perl:
my $char = "\x{0338}";
print $char; # Output: ̸
PHP:
$char = "\x{0338}";
echo $char; // Output: ̸
Ruby:
char = "\u{0338}"
puts char # Output: ̸
Rust:
let c = '\u{338}';
println!("{}", c); // Output: ̸
Go:
char := '\u0338'
fmt.Printf("%c\n", char) // Output: ̸
CSS:
/* CSS content property */
.element::before {
content: "\000338"; /* 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%B8
MD5:
bae76d51ce9d26659f5962dfbfab8a3d
SHA1:
879a552b1ff296d2c376da3d97ca56efd1b33e43
Base64:
zLg=