C:
char c = '\u06E3';
printf("%c\n", c); // Output: ۣ
JavaScript:
const char = '\u06E3';
console.log(char); // Output: ۣ
Java:
char c = '\u06E3';
System.out.println(c); // Output: ۣ
JSON:
{"text": "\u06E3"} // Value: ۣ
Python:
char = '\u06E3'
print(char) # Output: ۣ
Perl:
my $char = "\x{06E3}";
print $char; # Output: ۣ
PHP:
$char = "\x{06E3}";
echo $char; // Output: ۣ
Ruby:
char = "\u{06E3}"
puts char # Output: ۣ
Rust:
let c = '\u{6E3}';
println!("{}", c); // Output: ۣ
Go:
char := '\u06E3'
fmt.Printf("%c\n", char) // Output: ۣ
CSS:
/* CSS content property */
.element::before {
content: "\0006E3"; /* 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=%DB%A3
MD5:
a89945d61cf95a148c40d2cc3dc807de
SHA1:
fec505e8c1d06427f47917929e7e44cf4ab106fd
Base64:
26M=