C:
char c = '\u0682';
printf("%c\n", c); // Output: ڂ
JavaScript:
const char = '\u0682';
console.log(char); // Output: ڂ
Java:
char c = '\u0682';
System.out.println(c); // Output: ڂ
JSON:
{"text": "\u0682"} // Value: ڂ
Python:
char = '\u0682'
print(char) # Output: ڂ
Perl:
my $char = "\x{0682}";
print $char; # Output: ڂ
PHP:
$char = "\x{0682}";
echo $char; // Output: ڂ
Ruby:
char = "\u{0682}"
puts char # Output: ڂ
Rust:
let c = '\u{682}';
println!("{}", c); // Output: ڂ
Go:
char := '\u0682'
fmt.Printf("%c\n", char) // Output: ڂ
CSS:
/* CSS content property */
.element::before {
content: "\000682"; /* 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%82
MD5:
7df1e3d3052304cff6a273b4f3e4cb45
SHA1:
e1ce490e2a2ecbdf555540640a8a6a6a2a2c7ea6
Base64:
2oI=