C:
char c = '\u0327';
printf("%c\n", c); // Output: ̧
JavaScript:
const char = '\u0327';
console.log(char); // Output: ̧
Java:
char c = '\u0327';
System.out.println(c); // Output: ̧
JSON:
{"text": "\u0327"} // Value: ̧
Python:
char = '\u0327'
print(char) # Output: ̧
Perl:
my $char = "\x{0327}";
print $char; # Output: ̧
PHP:
$char = "\x{0327}";
echo $char; // Output: ̧
Ruby:
char = "\u{0327}"
puts char # Output: ̧
Rust:
let c = '\u{327}';
println!("{}", c); // Output: ̧
Go:
char := '\u0327'
fmt.Printf("%c\n", char) // Output: ̧
CSS:
/* CSS content property */
.element::before {
content: "\000327"; /* 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%A7
MD5:
ab371fa3feb350addacc42cb828e7258
SHA1:
a217dbac5cf2e59821c0e5f090c60ea0e839f09a
Base64:
zKc=