C:
char c = '\u0784';
printf("%c\n", c); // Output: ބ
JavaScript:
const char = '\u0784';
console.log(char); // Output: ބ
Java:
char c = '\u0784';
System.out.println(c); // Output: ބ
JSON:
{"text": "\u0784"} // Value: ބ
Python:
char = '\u0784'
print(char) # Output: ބ
Perl:
my $char = "\x{0784}";
print $char; # Output: ބ
PHP:
$char = "\x{0784}";
echo $char; // Output: ބ
Ruby:
char = "\u{0784}"
puts char # Output: ބ
Rust:
let c = '\u{784}';
println!("{}", c); // Output: ބ
Go:
char := '\u0784'
fmt.Printf("%c\n", char) // Output: ބ
CSS:
/* CSS content property */
.element::before {
content: "\000784"; /* 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%84
MD5:
08895bb61cdc6e8f45788e8f4cbb380a
SHA1:
c087fdec9f20cb1bd5ca832ba016d053d55634dd
Base64:
3oQ=