C:
char c = '\u0647';
printf("%c\n", c); // Output: ه
JavaScript:
const char = '\u0647';
console.log(char); // Output: ه
Java:
char c = '\u0647';
System.out.println(c); // Output: ه
JSON:
{"text": "\u0647"} // Value: ه
Python:
char = '\u0647'
print(char) # Output: ه
Perl:
my $char = "\x{0647}";
print $char; # Output: ه
PHP:
$char = "\x{0647}";
echo $char; // Output: ه
Ruby:
char = "\u{0647}"
puts char # Output: ه
Rust:
let c = '\u{647}';
println!("{}", c); // Output: ه
Go:
char := '\u0647'
fmt.Printf("%c\n", char) // Output: ه
CSS:
/* CSS content property */
.element::before {
content: "\000647"; /* 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=%D9%87
MD5:
b5af0a9395eecd2fb8981a96ef9281f9
SHA1:
e9edeb603dee814764f87af7aebf05ba335c5750
Base64:
2Yc=