C:
char c = '\u0347';
printf("%c\n", c); // Output: ͇
JavaScript:
const char = '\u0347';
console.log(char); // Output: ͇
Java:
char c = '\u0347';
System.out.println(c); // Output: ͇
JSON:
{"text": "\u0347"} // Value: ͇
Python:
char = '\u0347'
print(char) # Output: ͇
Perl:
my $char = "\x{0347}";
print $char; # Output: ͇
PHP:
$char = "\x{0347}";
echo $char; // Output: ͇
Ruby:
char = "\u{0347}"
puts char # Output: ͇
Rust:
let c = '\u{347}';
println!("{}", c); // Output: ͇
Go:
char := '\u0347'
fmt.Printf("%c\n", char) // Output: ͇
CSS:
/* CSS content property */
.element::before {
content: "\000347"; /* 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%87
MD5:
1cc0b186c886945f97bd62513d3e9be9
SHA1:
c2ed6d99f572d4d49a450059b1ab8128bb4c7fd8
Base64:
zYc=