C:
char c = '\u312A';
printf("%c\n", c); // Output: ㄪ
JavaScript:
const char = '\u312A';
console.log(char); // Output: ㄪ
Java:
char c = '\u312A';
System.out.println(c); // Output: ㄪ
JSON:
{"text": "\u312A"} // Value: ㄪ
Python:
char = '\u312A'
print(char) # Output: ㄪ
Perl:
my $char = "\x{312A}";
print $char; # Output: ㄪ
PHP:
$char = "\x{312A}";
echo $char; // Output: ㄪ
Ruby:
char = "\u{312A}"
puts char # Output: ㄪ
Rust:
let c = '\u{312A}';
println!("{}", c); // Output: ㄪ
Go:
char := '\u312A'
fmt.Printf("%c\n", char) // Output: ㄪ
CSS:
/* CSS content property */
.element::before {
content: "\00312A"; /* 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=%E3%84%AA
MD5:
86e04afd970bbfea7bd99f8a65e38da6
SHA1:
0e13947668c04a0752e1d8d2d50f2a270c770a3c
Base64:
44Sq