C:
char c = '\u0346';
printf("%c\n", c); // Output: ͆
JavaScript:
const char = '\u0346';
console.log(char); // Output: ͆
Java:
char c = '\u0346';
System.out.println(c); // Output: ͆
JSON:
{"text": "\u0346"} // Value: ͆
Python:
char = '\u0346'
print(char) # Output: ͆
Perl:
my $char = "\x{0346}";
print $char; # Output: ͆
PHP:
$char = "\x{0346}";
echo $char; // Output: ͆
Ruby:
char = "\u{0346}"
puts char # Output: ͆
Rust:
let c = '\u{346}';
println!("{}", c); // Output: ͆
Go:
char := '\u0346'
fmt.Printf("%c\n", char) // Output: ͆
CSS:
/* CSS content property */
.element::before {
content: "\000346"; /* 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%86
MD5:
b5d4e0a01ba843459a616490cb2a80d6
SHA1:
c71b652770698c84fe70b7c13ca2e51b9a948b36
Base64:
zYY=