C:
char c = '\u0313';
printf("%c\n", c); // Output: ̓
JavaScript:
const char = '\u0313';
console.log(char); // Output: ̓
Java:
char c = '\u0313';
System.out.println(c); // Output: ̓
JSON:
{"text": "\u0313"} // Value: ̓
Python:
char = '\u0313'
print(char) # Output: ̓
Perl:
my $char = "\x{0313}";
print $char; # Output: ̓
PHP:
$char = "\x{0313}";
echo $char; // Output: ̓
Ruby:
char = "\u{0313}"
puts char # Output: ̓
Rust:
let c = '\u{313}';
println!("{}", c); // Output: ̓
Go:
char := '\u0313'
fmt.Printf("%c\n", char) // Output: ̓
CSS:
/* CSS content property */
.element::before {
content: "\000313"; /* 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%93
MD5:
a8c6ffc11da3ea2d238ac2015416911b
SHA1:
08cc7c40739a52a5b1f5abbd1097d0c5ca74bce7
Base64:
zJM=