C:
char c = '\u067C';
printf("%c\n", c); // Output: ټ
JavaScript:
const char = '\u067C';
console.log(char); // Output: ټ
Java:
char c = '\u067C';
System.out.println(c); // Output: ټ
JSON:
{"text": "\u067C"} // Value: ټ
Python:
char = '\u067C'
print(char) # Output: ټ
Perl:
my $char = "\x{067C}";
print $char; # Output: ټ
PHP:
$char = "\x{067C}";
echo $char; // Output: ټ
Ruby:
char = "\u{067C}"
puts char # Output: ټ
Rust:
let c = '\u{67C}';
println!("{}", c); // Output: ټ
Go:
char := '\u067C'
fmt.Printf("%c\n", char) // Output: ټ
CSS:
/* CSS content property */
.element::before {
content: "\00067C"; /* 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=%D9%BC
MD5:
448f451d0162868f51f6d6848e8caca1
SHA1:
abd9c2bbef43c5bd6b79a5e53c2f8c0d0772f501
Base64:
2bw=