C:
char c = '\u035A';
printf("%c\n", c); // Output: ͚
JavaScript:
const char = '\u035A';
console.log(char); // Output: ͚
Java:
char c = '\u035A';
System.out.println(c); // Output: ͚
JSON:
{"text": "\u035A"} // Value: ͚
Python:
char = '\u035A'
print(char) # Output: ͚
Perl:
my $char = "\x{035A}";
print $char; # Output: ͚
PHP:
$char = "\x{035A}";
echo $char; // Output: ͚
Ruby:
char = "\u{035A}"
puts char # Output: ͚
Rust:
let c = '\u{35A}';
println!("{}", c); // Output: ͚
Go:
char := '\u035A'
fmt.Printf("%c\n", char) // Output: ͚
CSS:
/* CSS content property */
.element::before {
content: "\00035A"; /* 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%9A
MD5:
25ad97ef2966035f12c5bbc0b197cf02
SHA1:
ddbbdb786ba5038f2a1da1c3f849c1b2ef067af3
Base64:
zZo=