C:
char c = '\u1382';
printf("%c\n", c); // Output: ᎂ
JavaScript:
const char = '\u1382';
console.log(char); // Output: ᎂ
Java:
char c = '\u1382';
System.out.println(c); // Output: ᎂ
JSON:
{"text": "\u1382"} // Value: ᎂ
Python:
char = '\u1382'
print(char) # Output: ᎂ
Perl:
my $char = "\x{1382}";
print $char; # Output: ᎂ
PHP:
$char = "\x{1382}";
echo $char; // Output: ᎂ
Ruby:
char = "\u{1382}"
puts char # Output: ᎂ
Rust:
let c = '\u{1382}';
println!("{}", c); // Output: ᎂ
Go:
char := '\u1382'
fmt.Printf("%c\n", char) // Output: ᎂ
CSS:
/* CSS content property */
.element::before {
content: "\001382"; /* 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%8E%82
MD5:
3f20d104f0c871db9132fd32c07fd95c
SHA1:
9937f263571bc26935f667331692b7771aefcabf
Base64:
4Y6C