C:
char c = '\u06DF';
printf("%c\n", c); // Output: ۟
JavaScript:
const char = '\u06DF';
console.log(char); // Output: ۟
Java:
char c = '\u06DF';
System.out.println(c); // Output: ۟
JSON:
{"text": "\u06DF"} // Value: ۟
Python:
char = '\u06DF'
print(char) # Output: ۟
Perl:
my $char = "\x{06DF}";
print $char; # Output: ۟
PHP:
$char = "\x{06DF}";
echo $char; // Output: ۟
Ruby:
char = "\u{06DF}"
puts char # Output: ۟
Rust:
let c = '\u{6DF}';
println!("{}", c); // Output: ۟
Go:
char := '\u06DF'
fmt.Printf("%c\n", char) // Output: ۟
CSS:
/* CSS content property */
.element::before {
content: "\0006DF"; /* 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=%DB%9F
MD5:
c4bc33512c1bcce79e0cec8acc78cf19
SHA1:
15ca59afdbcfbda0855ad34d4909e5dda2157d22
Base64:
258=