C:
char c = '\u0321';
printf("%c\n", c); // Output: ̡
JavaScript:
const char = '\u0321';
console.log(char); // Output: ̡
Java:
char c = '\u0321';
System.out.println(c); // Output: ̡
JSON:
{"text": "\u0321"} // Value: ̡
Python:
char = '\u0321'
print(char) # Output: ̡
Perl:
my $char = "\x{0321}";
print $char; # Output: ̡
PHP:
$char = "\x{0321}";
echo $char; // Output: ̡
Ruby:
char = "\u{0321}"
puts char # Output: ̡
Rust:
let c = '\u{321}';
println!("{}", c); // Output: ̡
Go:
char := '\u0321'
fmt.Printf("%c\n", char) // Output: ̡
CSS:
/* CSS content property */
.element::before {
content: "\000321"; /* 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%A1
MD5:
99bd95ffaee573125da876f875fbf239
SHA1:
9247b3c2e9509410ff00c4917c3ead03ae3294ac
Base64:
zKE=