C:
char c = '\u0BEC';
printf("%c\n", c); // Output: ௬
JavaScript:
const char = '\u0BEC';
console.log(char); // Output: ௬
Java:
char c = '\u0BEC';
System.out.println(c); // Output: ௬
JSON:
{"text": "\u0BEC"} // Value: ௬
Python:
char = '\u0BEC'
print(char) # Output: ௬
Perl:
my $char = "\x{0BEC}";
print $char; # Output: ௬
PHP:
$char = "\x{0BEC}";
echo $char; // Output: ௬
Ruby:
char = "\u{0BEC}"
puts char # Output: ௬
Rust:
let c = '\u{BEC}';
println!("{}", c); // Output: ௬
Go:
char := '\u0BEC'
fmt.Printf("%c\n", char) // Output: ௬
CSS:
/* CSS content property */
.element::before {
content: "\000BEC"; /* 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%AF%AC
MD5:
7bfad7a6d2b1f8ae022cf124caf14045
SHA1:
881c9161c73090f4ce6b927543ba56383a400be9
Base64:
4K+s