C:
char c = '\u0337';
printf("%c\n", c); // Output: ̷
JavaScript:
const char = '\u0337';
console.log(char); // Output: ̷
Java:
char c = '\u0337';
System.out.println(c); // Output: ̷
JSON:
{"text": "\u0337"} // Value: ̷
Python:
char = '\u0337'
print(char) # Output: ̷
Perl:
my $char = "\x{0337}";
print $char; # Output: ̷
PHP:
$char = "\x{0337}";
echo $char; // Output: ̷
Ruby:
char = "\u{0337}"
puts char # Output: ̷
Rust:
let c = '\u{337}';
println!("{}", c); // Output: ̷
Go:
char := '\u0337'
fmt.Printf("%c\n", char) // Output: ̷
CSS:
/* CSS content property */
.element::before {
content: "\000337"; /* 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%B7
MD5:
501da9847536d581bc62c6e80e2b081a
SHA1:
4c496083ed37ab8cbf988bbfd3e1daaf75042a09
Base64:
zLc=