C:
char c = '\u1B82';
printf("%c\n", c); // Output: ᮂ
JavaScript:
const char = '\u1B82';
console.log(char); // Output: ᮂ
Java:
char c = '\u1B82';
System.out.println(c); // Output: ᮂ
JSON:
{"text": "\u1B82"} // Value: ᮂ
Python:
char = '\u1B82'
print(char) # Output: ᮂ
Perl:
my $char = "\x{1B82}";
print $char; # Output: ᮂ
PHP:
$char = "\x{1B82}";
echo $char; // Output: ᮂ
Ruby:
char = "\u{1B82}"
puts char # Output: ᮂ
Rust:
let c = '\u{1B82}';
println!("{}", c); // Output: ᮂ
Go:
char := '\u1B82'
fmt.Printf("%c\n", char) // Output: ᮂ
CSS:
/* CSS content property */
.element::before {
content: "\001B82"; /* 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%AE%82
MD5:
c122444294323e89e785017c8bb3cd2f
SHA1:
6bc24dc50dfc864d8bf6ddcf1c8ca1f37873ccde
Base64:
4a6C