C:
char c = '\u312C';
printf("%c\n", c); // Output: ㄬ
JavaScript:
const char = '\u312C';
console.log(char); // Output: ㄬ
Java:
char c = '\u312C';
System.out.println(c); // Output: ㄬ
JSON:
{"text": "\u312C"} // Value: ㄬ
Python:
char = '\u312C'
print(char) # Output: ㄬ
Perl:
my $char = "\x{312C}";
print $char; # Output: ㄬ
PHP:
$char = "\x{312C}";
echo $char; // Output: ㄬ
Ruby:
char = "\u{312C}"
puts char # Output: ㄬ
Rust:
let c = '\u{312C}';
println!("{}", c); // Output: ㄬ
Go:
char := '\u312C'
fmt.Printf("%c\n", char) // Output: ㄬ
CSS:
/* CSS content property */
.element::before {
content: "\00312C"; /* 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%AC
MD5:
ffef1fd3362da78ece64758afd99fafd
SHA1:
3f30d90538fad2e3d8884b173aa62d2661a77d40
Base64:
44Ss