C:
char c = '\u073F';
printf("%c\n", c); // Output: ܿ
JavaScript:
const char = '\u073F';
console.log(char); // Output: ܿ
Java:
char c = '\u073F';
System.out.println(c); // Output: ܿ
JSON:
{"text": "\u073F"} // Value: ܿ
Python:
char = '\u073F'
print(char) # Output: ܿ
Perl:
my $char = "\x{073F}";
print $char; # Output: ܿ
PHP:
$char = "\x{073F}";
echo $char; // Output: ܿ
Ruby:
char = "\u{073F}"
puts char # Output: ܿ
Rust:
let c = '\u{73F}';
println!("{}", c); // Output: ܿ
Go:
char := '\u073F'
fmt.Printf("%c\n", char) // Output: ܿ
CSS:
/* CSS content property */
.element::before {
content: "\00073F"; /* 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=%DC%BF
MD5:
6d2137cedf2c0ff104f613e373b6a7eb
SHA1:
1d12afbc3e3a0d7906c8534dc4be46b4072def62
Base64:
3L8=