C:
char c = '\u0354';
printf("%c\n", c); // Output: ͔
JavaScript:
const char = '\u0354';
console.log(char); // Output: ͔
Java:
char c = '\u0354';
System.out.println(c); // Output: ͔
JSON:
{"text": "\u0354"} // Value: ͔
Python:
char = '\u0354'
print(char) # Output: ͔
Perl:
my $char = "\x{0354}";
print $char; # Output: ͔
PHP:
$char = "\x{0354}";
echo $char; // Output: ͔
Ruby:
char = "\u{0354}"
puts char # Output: ͔
Rust:
let c = '\u{354}';
println!("{}", c); // Output: ͔
Go:
char := '\u0354'
fmt.Printf("%c\n", char) // Output: ͔
CSS:
/* CSS content property */
.element::before {
content: "\000354"; /* 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%94
MD5:
7a30279abda2785c4ce960c67d214b13
SHA1:
13af1eacedc54110fd577bce004d3a538b90bee6
Base64:
zZQ=