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