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