C:
char c = '\u0631';
printf("%c\n", c); // Output: ر
JavaScript:
const char = '\u0631';
console.log(char); // Output: ر
Java:
char c = '\u0631';
System.out.println(c); // Output: ر
JSON:
{"text": "\u0631"} // Value: ر
Python:
char = '\u0631'
print(char) # Output: ر
Perl:
my $char = "\x{0631}";
print $char; # Output: ر
PHP:
$char = "\x{0631}";
echo $char; // Output: ر
Ruby:
char = "\u{0631}"
puts char # Output: ر
Rust:
let c = '\u{631}';
println!("{}", c); // Output: ر
Go:
char := '\u0631'
fmt.Printf("%c\n", char) // Output: ر
CSS:
/* CSS content property */
.element::before {
content: "\000631"; /* 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=%D8%B1
MD5:
65087b09d726a9af91c8c95b135c2a4b
SHA1:
7a59c9d30973d6ca0152b37b408e6af3237b7c46
Base64:
2LE=