C:
char c = '\u0300';
printf("%c\n", c); // Output: ̀
JavaScript:
const char = '\u0300';
console.log(char); // Output: ̀
Java:
char c = '\u0300';
System.out.println(c); // Output: ̀
JSON:
{"text": "\u0300"} // Value: ̀
Python:
char = '\u0300'
print(char) # Output: ̀
Perl:
my $char = "\x{0300}";
print $char; # Output: ̀
PHP:
$char = "\x{0300}";
echo $char; // Output: ̀
Ruby:
char = "\u{0300}"
puts char # Output: ̀
Rust:
let c = '\u{300}';
println!("{}", c); // Output: ̀
Go:
char := '\u0300'
fmt.Printf("%c\n", char) // Output: ̀
CSS:
/* CSS content property */
.element::before {
content: "\000300"; /* 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%80
MD5:
d728844a6a8a2c886510f9fbb464306d
SHA1:
e9c560e47ae25d1eb624f3a58bdaae9637d2fc56
Base64:
zIA=