C:
char c = '\u0311';
printf("%c\n", c); // Output: ̑
JavaScript:
const char = '\u0311';
console.log(char); // Output: ̑
Java:
char c = '\u0311';
System.out.println(c); // Output: ̑
JSON:
{"text": "\u0311"} // Value: ̑
Python:
char = '\u0311'
print(char) # Output: ̑
Perl:
my $char = "\x{0311}";
print $char; # Output: ̑
PHP:
$char = "\x{0311}";
echo $char; // Output: ̑
Ruby:
char = "\u{0311}"
puts char # Output: ̑
Rust:
let c = '\u{311}';
println!("{}", c); // Output: ̑
Go:
char := '\u0311'
fmt.Printf("%c\n", char) // Output: ̑
CSS:
/* CSS content property */
.element::before {
content: "\000311"; /* 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%91
MD5:
0a485e26efd15c5b5d5e8b9264e3c28f
SHA1:
af54060662594ef5e57109556986cbf8a235a273
Base64:
zJE=