C:
char c = '\u0685';
printf("%c\n", c); // Output: څ
JavaScript:
const char = '\u0685';
console.log(char); // Output: څ
Java:
char c = '\u0685';
System.out.println(c); // Output: څ
JSON:
{"text": "\u0685"} // Value: څ
Python:
char = '\u0685'
print(char) # Output: څ
Perl:
my $char = "\x{0685}";
print $char; # Output: څ
PHP:
$char = "\x{0685}";
echo $char; // Output: څ
Ruby:
char = "\u{0685}"
puts char # Output: څ
Rust:
let c = '\u{685}';
println!("{}", c); // Output: څ
Go:
char := '\u0685'
fmt.Printf("%c\n", char) // Output: څ
CSS:
/* CSS content property */
.element::before {
content: "\000685"; /* 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%85
MD5:
cacddf3743af5f403016f2668d6ef22d
SHA1:
390c6c40c95a98e18270377e4e88a3dea99d2113
Base64:
2oU=