C:
char c = '\u06B6';
printf("%c\n", c); // Output: ڶ
JavaScript:
const char = '\u06B6';
console.log(char); // Output: ڶ
Java:
char c = '\u06B6';
System.out.println(c); // Output: ڶ
JSON:
{"text": "\u06B6"} // Value: ڶ
Python:
char = '\u06B6'
print(char) # Output: ڶ
Perl:
my $char = "\x{06B6}";
print $char; # Output: ڶ
PHP:
$char = "\x{06B6}";
echo $char; // Output: ڶ
Ruby:
char = "\u{06B6}"
puts char # Output: ڶ
Rust:
let c = '\u{6B6}';
println!("{}", c); // Output: ڶ
Go:
char := '\u06B6'
fmt.Printf("%c\n", char) // Output: ڶ
CSS:
/* CSS content property */
.element::before {
content: "\0006B6"; /* 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%B6
MD5:
29eb08e9982bc1575f38d25e641cef89
SHA1:
3712a9394b31d5eacafd08f7156d605e329aa74e
Base64:
2rY=