C:
char c = '\u310B';
printf("%c\n", c); // Output: ㄋ
JavaScript:
const char = '\u310B';
console.log(char); // Output: ㄋ
Java:
char c = '\u310B';
System.out.println(c); // Output: ㄋ
JSON:
{"text": "\u310B"} // Value: ㄋ
Python:
char = '\u310B'
print(char) # Output: ㄋ
Perl:
my $char = "\x{310B}";
print $char; # Output: ㄋ
PHP:
$char = "\x{310B}";
echo $char; // Output: ㄋ
Ruby:
char = "\u{310B}"
puts char # Output: ㄋ
Rust:
let c = '\u{310B}';
println!("{}", c); // Output: ㄋ
Go:
char := '\u310B'
fmt.Printf("%c\n", char) // Output: ㄋ
CSS:
/* CSS content property */
.element::before {
content: "\00310B"; /* 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%8B
MD5:
a162e46e26adbfb3cbcb939b3edffe22
SHA1:
c1736813c4567741ed15d9e23758784849fff012
Base64:
44SL