C:
char c = '\u0326';
printf("%c\n", c); // Output: ̦
JavaScript:
const char = '\u0326';
console.log(char); // Output: ̦
Java:
char c = '\u0326';
System.out.println(c); // Output: ̦
JSON:
{"text": "\u0326"} // Value: ̦
Python:
char = '\u0326'
print(char) # Output: ̦
Perl:
my $char = "\x{0326}";
print $char; # Output: ̦
PHP:
$char = "\x{0326}";
echo $char; // Output: ̦
Ruby:
char = "\u{0326}"
puts char # Output: ̦
Rust:
let c = '\u{326}';
println!("{}", c); // Output: ̦
Go:
char := '\u0326'
fmt.Printf("%c\n", char) // Output: ̦
CSS:
/* CSS content property */
.element::before {
content: "\000326"; /* 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%A6
MD5:
2d100308ae7f9e4a319bba44016a3f5b
SHA1:
bff9cdc5af942149fb3fc3fa5d3df71899e214e9
Base64:
zKY=