C:
char c = '\u0356';
printf("%c\n", c); // Output: ͖
JavaScript:
const char = '\u0356';
console.log(char); // Output: ͖
Java:
char c = '\u0356';
System.out.println(c); // Output: ͖
JSON:
{"text": "\u0356"} // Value: ͖
Python:
char = '\u0356'
print(char) # Output: ͖
Perl:
my $char = "\x{0356}";
print $char; # Output: ͖
PHP:
$char = "\x{0356}";
echo $char; // Output: ͖
Ruby:
char = "\u{0356}"
puts char # Output: ͖
Rust:
let c = '\u{356}';
println!("{}", c); // Output: ͖
Go:
char := '\u0356'
fmt.Printf("%c\n", char) // Output: ͖
CSS:
/* CSS content property */
.element::before {
content: "\000356"; /* 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%96
MD5:
4acec898bf9f1b3bd3902ac8694f38f0
SHA1:
6cd65288039b304e5c91794a8d7de124ad279621
Base64:
zZY=