C:
char c = '\u0323';
printf("%c\n", c); // Output: ̣
JavaScript:
const char = '\u0323';
console.log(char); // Output: ̣
Java:
char c = '\u0323';
System.out.println(c); // Output: ̣
JSON:
{"text": "\u0323"} // Value: ̣
Python:
char = '\u0323'
print(char) # Output: ̣
Perl:
my $char = "\x{0323}";
print $char; # Output: ̣
PHP:
$char = "\x{0323}";
echo $char; // Output: ̣
Ruby:
char = "\u{0323}"
puts char # Output: ̣
Rust:
let c = '\u{323}';
println!("{}", c); // Output: ̣
Go:
char := '\u0323'
fmt.Printf("%c\n", char) // Output: ̣
CSS:
/* CSS content property */
.element::before {
content: "\000323"; /* 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%A3
MD5:
9c51e6b3c824a99f60cd58e6e996e2e2
SHA1:
f5a8fdd0673819aa294294d94247c4372efe454a
Base64:
zKM=