C:
char c = '\u0317';
printf("%c\n", c); // Output: ̗
JavaScript:
const char = '\u0317';
console.log(char); // Output: ̗
Java:
char c = '\u0317';
System.out.println(c); // Output: ̗
JSON:
{"text": "\u0317"} // Value: ̗
Python:
char = '\u0317'
print(char) # Output: ̗
Perl:
my $char = "\x{0317}";
print $char; # Output: ̗
PHP:
$char = "\x{0317}";
echo $char; // Output: ̗
Ruby:
char = "\u{0317}"
puts char # Output: ̗
Rust:
let c = '\u{317}';
println!("{}", c); // Output: ̗
Go:
char := '\u0317'
fmt.Printf("%c\n", char) // Output: ̗
CSS:
/* CSS content property */
.element::before {
content: "\000317"; /* 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%97
MD5:
32e48292914a75125de0b73afbce6362
SHA1:
84c75833e781915fd80f1054046de18e11671e73
Base64:
zJc=