C:
char c = '\u0F62';
printf("%c\n", c); // Output: ར
JavaScript:
const char = '\u0F62';
console.log(char); // Output: ར
Java:
char c = '\u0F62';
System.out.println(c); // Output: ར
JSON:
{"text": "\u0F62"} // Value: ར
Python:
char = '\u0F62'
print(char) # Output: ར
Perl:
my $char = "\x{0F62}";
print $char; # Output: ར
PHP:
$char = "\x{0F62}";
echo $char; // Output: ར
Ruby:
char = "\u{0F62}"
puts char # Output: ར
Rust:
let c = '\u{F62}';
println!("{}", c); // Output: ར
Go:
char := '\u0F62'
fmt.Printf("%c\n", char) // Output: ར
CSS:
/* CSS content property */
.element::before {
content: "\000F62"; /* 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=%E0%BD%A2
MD5:
ddbf8f3755218ba260932c5d8406742f
SHA1:
9bbea4cc85a4f4aa9dce47e4bba78fd743428590
Base64:
4L2i