C:
char c = '\u0686';
printf("%c\n", c); // Output: چ
JavaScript:
const char = '\u0686';
console.log(char); // Output: چ
Java:
char c = '\u0686';
System.out.println(c); // Output: چ
JSON:
{"text": "\u0686"} // Value: چ
Python:
char = '\u0686'
print(char) # Output: چ
Perl:
my $char = "\x{0686}";
print $char; # Output: چ
PHP:
$char = "\x{0686}";
echo $char; // Output: چ
Ruby:
char = "\u{0686}"
puts char # Output: چ
Rust:
let c = '\u{686}';
println!("{}", c); // Output: چ
Go:
char := '\u0686'
fmt.Printf("%c\n", char) // Output: چ
CSS:
/* CSS content property */
.element::before {
content: "\000686"; /* 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%86
MD5:
044bb65432069576c9eba15a4e74738b
SHA1:
80e867783f8a92951aef53498f57fba912c1c434
Base64:
2oY=