C:
char c = '\u079B';
printf("%c\n", c); // Output: ޛ
JavaScript:
const char = '\u079B';
console.log(char); // Output: ޛ
Java:
char c = '\u079B';
System.out.println(c); // Output: ޛ
JSON:
{"text": "\u079B"} // Value: ޛ
Python:
char = '\u079B'
print(char) # Output: ޛ
Perl:
my $char = "\x{079B}";
print $char; # Output: ޛ
PHP:
$char = "\x{079B}";
echo $char; // Output: ޛ
Ruby:
char = "\u{079B}"
puts char # Output: ޛ
Rust:
let c = '\u{79B}';
println!("{}", c); // Output: ޛ
Go:
char := '\u079B'
fmt.Printf("%c\n", char) // Output: ޛ
CSS:
/* CSS content property */
.element::before {
content: "\00079B"; /* 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=%DE%9B
MD5:
e8ea201ad1eeeb8259fad1d1c3230aa9
SHA1:
50609f624117e1c722ae0f29aa1b9740add1e3f7
Base64:
3ps=