C:
char c = '\u0301';
printf("%c\n", c); // Output: ́
JavaScript:
const char = '\u0301';
console.log(char); // Output: ́
Java:
char c = '\u0301';
System.out.println(c); // Output: ́
JSON:
{"text": "\u0301"} // Value: ́
Python:
char = '\u0301'
print(char) # Output: ́
Perl:
my $char = "\x{0301}";
print $char; # Output: ́
PHP:
$char = "\x{0301}";
echo $char; // Output: ́
Ruby:
char = "\u{0301}"
puts char # Output: ́
Rust:
let c = '\u{301}';
println!("{}", c); // Output: ́
Go:
char := '\u0301'
fmt.Printf("%c\n", char) // Output: ́
CSS:
/* CSS content property */
.element::before {
content: "\000301"; /* 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%81
MD5:
1029060688e8dbef7d08d1ccf85894ac
SHA1:
8ceb984a7a74b7d97837de704b0189f965d415f9
Base64:
zIE=