C:
char c = '\u0305';
printf("%c\n", c); // Output: ̅
JavaScript:
const char = '\u0305';
console.log(char); // Output: ̅
Java:
char c = '\u0305';
System.out.println(c); // Output: ̅
JSON:
{"text": "\u0305"} // Value: ̅
Python:
char = '\u0305'
print(char) # Output: ̅
Perl:
my $char = "\x{0305}";
print $char; # Output: ̅
PHP:
$char = "\x{0305}";
echo $char; // Output: ̅
Ruby:
char = "\u{0305}"
puts char # Output: ̅
Rust:
let c = '\u{305}';
println!("{}", c); // Output: ̅
Go:
char := '\u0305'
fmt.Printf("%c\n", char) // Output: ̅
CSS:
/* CSS content property */
.element::before {
content: "\000305"; /* 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%85
MD5:
167ef2a169062e3ea6674b8b6f5ef35c
SHA1:
c08c56c5e596e3d9d0080468b8007ec48c48b704
Base64:
zIU=