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