C:
char c = '\u0349';
printf("%c\n", c); // Output: ͉
JavaScript:
const char = '\u0349';
console.log(char); // Output: ͉
Java:
char c = '\u0349';
System.out.println(c); // Output: ͉
JSON:
{"text": "\u0349"} // Value: ͉
Python:
char = '\u0349'
print(char) # Output: ͉
Perl:
my $char = "\x{0349}";
print $char; # Output: ͉
PHP:
$char = "\x{0349}";
echo $char; // Output: ͉
Ruby:
char = "\u{0349}"
puts char # Output: ͉
Rust:
let c = '\u{349}';
println!("{}", c); // Output: ͉
Go:
char := '\u0349'
fmt.Printf("%c\n", char) // Output: ͉
CSS:
/* CSS content property */
.element::before {
content: "\000349"; /* 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%89
MD5:
7972d9cea2c1bd697005e7f46ed99a59
SHA1:
09684903eef77c5e6b0b79bb40cb663795553dd7
Base64:
zYk=