C:
char c = '\u034C';
printf("%c\n", c); // Output: ͌
JavaScript:
const char = '\u034C';
console.log(char); // Output: ͌
Java:
char c = '\u034C';
System.out.println(c); // Output: ͌
JSON:
{"text": "\u034C"} // Value: ͌
Python:
char = '\u034C'
print(char) # Output: ͌
Perl:
my $char = "\x{034C}";
print $char; # Output: ͌
PHP:
$char = "\x{034C}";
echo $char; // Output: ͌
Ruby:
char = "\u{034C}"
puts char # Output: ͌
Rust:
let c = '\u{34C}';
println!("{}", c); // Output: ͌
Go:
char := '\u034C'
fmt.Printf("%c\n", char) // Output: ͌
CSS:
/* CSS content property */
.element::before {
content: "\00034C"; /* 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%8C
MD5:
ffe94d7f515ac24246ca036d5e79c67e
SHA1:
1ffd2daa18b8a18926ee47233dd1f7d07c4f2721
Base64:
zYw=