C:
char c = '\u104B';
printf("%c\n", c); // Output: ။
JavaScript:
const char = '\u104B';
console.log(char); // Output: ။
Java:
char c = '\u104B';
System.out.println(c); // Output: ။
JSON:
{"text": "\u104B"} // Value: ။
Python:
char = '\u104B'
print(char) # Output: ။
Perl:
my $char = "\x{104B}";
print $char; # Output: ။
PHP:
$char = "\x{104B}";
echo $char; // Output: ။
Ruby:
char = "\u{104B}"
puts char # Output: ။
Rust:
let c = '\u{104B}';
println!("{}", c); // Output: ။
Go:
char := '\u104B'
fmt.Printf("%c\n", char) // Output: ။
CSS:
/* CSS content property */
.element::before {
content: "\00104B"; /* 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=%E1%81%8B
MD5:
47e81e25d96fd982f1e2aeae7a269cca
SHA1:
8120f2d9fe1818373d976715789220014b090028
Base64:
4YGL