C:
char c = '\uA312';
printf("%c\n", c); // Output: ꌒ
JavaScript:
const char = '\uA312';
console.log(char); // Output: ꌒ
Java:
char c = '\uA312';
System.out.println(c); // Output: ꌒ
JSON:
{"text": "\uA312"} // Value: ꌒ
Python:
char = '\uA312'
print(char) # Output: ꌒ
Perl:
my $char = "\x{A312}";
print $char; # Output: ꌒ
PHP:
$char = "\x{A312}";
echo $char; // Output: ꌒ
Ruby:
char = "\u{A312}"
puts char # Output: ꌒ
Rust:
let c = '\u{A312}';
println!("{}", c); // Output: ꌒ
Go:
char := '\uA312'
fmt.Printf("%c\n", char) // Output: ꌒ
CSS:
/* CSS content property */
.element::before {
content: "\00A312"; /* 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=%EA%8C%92
MD5:
df487e4f7d1b895393548d83adf8e109
SHA1:
d1c7d367d124f610cc7030ec958a6c621898538d
Base64:
6oyS