C:
char c = '\u0353';
printf("%c\n", c); // Output: ͓
JavaScript:
const char = '\u0353';
console.log(char); // Output: ͓
Java:
char c = '\u0353';
System.out.println(c); // Output: ͓
JSON:
{"text": "\u0353"} // Value: ͓
Python:
char = '\u0353'
print(char) # Output: ͓
Perl:
my $char = "\x{0353}";
print $char; # Output: ͓
PHP:
$char = "\x{0353}";
echo $char; // Output: ͓
Ruby:
char = "\u{0353}"
puts char # Output: ͓
Rust:
let c = '\u{353}';
println!("{}", c); // Output: ͓
Go:
char := '\u0353'
fmt.Printf("%c\n", char) // Output: ͓
CSS:
/* CSS content property */
.element::before {
content: "\000353"; /* 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=%CD%93
MD5:
29c0f15fcd6dec0481aad3df146abe7f
SHA1:
6c577d273aa55f4524045ee3b765a0dc2c3760ba
Base64:
zZM=