C:
char c = '\u1042';
printf("%c\n", c); // Output: ၂
JavaScript:
const char = '\u1042';
console.log(char); // Output: ၂
Java:
char c = '\u1042';
System.out.println(c); // Output: ၂
JSON:
{"text": "\u1042"} // Value: ၂
Python:
char = '\u1042'
print(char) # Output: ၂
Perl:
my $char = "\x{1042}";
print $char; # Output: ၂
PHP:
$char = "\x{1042}";
echo $char; // Output: ၂
Ruby:
char = "\u{1042}"
puts char # Output: ၂
Rust:
let c = '\u{1042}';
println!("{}", c); // Output: ၂
Go:
char := '\u1042'
fmt.Printf("%c\n", char) // Output: ၂
CSS:
/* CSS content property */
.element::before {
content: "\001042"; /* 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%82
MD5:
c2def753a00f9ac60f4ca0d33dbb61ad
SHA1:
24643ed18b0d06d81239d82704480cb351cefc77
Base64:
4YGC