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