C:
char c = '\u0319';
printf("%c\n", c); // Output: ̙
JavaScript:
const char = '\u0319';
console.log(char); // Output: ̙
Java:
char c = '\u0319';
System.out.println(c); // Output: ̙
JSON:
{"text": "\u0319"} // Value: ̙
Python:
char = '\u0319'
print(char) # Output: ̙
Perl:
my $char = "\x{0319}";
print $char; # Output: ̙
PHP:
$char = "\x{0319}";
echo $char; // Output: ̙
Ruby:
char = "\u{0319}"
puts char # Output: ̙
Rust:
let c = '\u{319}';
println!("{}", c); // Output: ̙
Go:
char := '\u0319'
fmt.Printf("%c\n", char) // Output: ̙
CSS:
/* CSS content property */
.element::before {
content: "\000319"; /* 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%99
MD5:
e55ed88775193d643ea4e3dce20adc2d
SHA1:
31e93c5bd9dedd291e0f6b6358066d096983bfc9
Base64:
zJk=