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