C:
char c = '\u0320';
printf("%c\n", c); // Output: ̠
JavaScript:
const char = '\u0320';
console.log(char); // Output: ̠
Java:
char c = '\u0320';
System.out.println(c); // Output: ̠
JSON:
{"text": "\u0320"} // Value: ̠
Python:
char = '\u0320'
print(char) # Output: ̠
Perl:
my $char = "\x{0320}";
print $char; # Output: ̠
PHP:
$char = "\x{0320}";
echo $char; // Output: ̠
Ruby:
char = "\u{0320}"
puts char # Output: ̠
Rust:
let c = '\u{320}';
println!("{}", c); // Output: ̠
Go:
char := '\u0320'
fmt.Printf("%c\n", char) // Output: ̠
CSS:
/* CSS content property */
.element::before {
content: "\000320"; /* 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%A0
MD5:
10c472d1a25010a0e7f8eee37fb1f46c
SHA1:
2713570a8d0d6c6b861bc483e38d9164819e645b
Base64:
zKA=