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