C:
char c = '\u0325';
printf("%c\n", c); // Output: ̥
JavaScript:
const char = '\u0325';
console.log(char); // Output: ̥
Java:
char c = '\u0325';
System.out.println(c); // Output: ̥
JSON:
{"text": "\u0325"} // Value: ̥
Python:
char = '\u0325'
print(char) # Output: ̥
Perl:
my $char = "\x{0325}";
print $char; # Output: ̥
PHP:
$char = "\x{0325}";
echo $char; // Output: ̥
Ruby:
char = "\u{0325}"
puts char # Output: ̥
Rust:
let c = '\u{325}';
println!("{}", c); // Output: ̥
Go:
char := '\u0325'
fmt.Printf("%c\n", char) // Output: ̥
CSS:
/* CSS content property */
.element::before {
content: "\000325"; /* 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%A5
MD5:
4d2cd99ae9abbaefa0de2aae10eefc06
SHA1:
689ec27f8b5b36bbc554788ce166022a43391afb
Base64:
zKU=