C:
char c = '\u0687';
printf("%c\n", c); // Output: ڇ
JavaScript:
const char = '\u0687';
console.log(char); // Output: ڇ
Java:
char c = '\u0687';
System.out.println(c); // Output: ڇ
JSON:
{"text": "\u0687"} // Value: ڇ
Python:
char = '\u0687'
print(char) # Output: ڇ
Perl:
my $char = "\x{0687}";
print $char; # Output: ڇ
PHP:
$char = "\x{0687}";
echo $char; // Output: ڇ
Ruby:
char = "\u{0687}"
puts char # Output: ڇ
Rust:
let c = '\u{687}';
println!("{}", c); // Output: ڇ
Go:
char := '\u0687'
fmt.Printf("%c\n", char) // Output: ڇ
CSS:
/* CSS content property */
.element::before {
content: "\000687"; /* 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=%DA%87
MD5:
2635a2660837bae849dbcb2a881d78ac
SHA1:
a2a8d859bec3d5427bdab0deeb1c3cd0e6fb114f
Base64:
2oc=