C:
char c = '\u3124';
printf("%c\n", c); // Output: ㄤ
JavaScript:
const char = '\u3124';
console.log(char); // Output: ㄤ
Java:
char c = '\u3124';
System.out.println(c); // Output: ㄤ
JSON:
{"text": "\u3124"} // Value: ㄤ
Python:
char = '\u3124'
print(char) # Output: ㄤ
Perl:
my $char = "\x{3124}";
print $char; # Output: ㄤ
PHP:
$char = "\x{3124}";
echo $char; // Output: ㄤ
Ruby:
char = "\u{3124}"
puts char # Output: ㄤ
Rust:
let c = '\u{3124}';
println!("{}", c); // Output: ㄤ
Go:
char := '\u3124'
fmt.Printf("%c\n", char) // Output: ㄤ
CSS:
/* CSS content property */
.element::before {
content: "\003124"; /* 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%A4
MD5:
b36705758fef1fc4d1042c95d5815898
SHA1:
a55fa28d70d289495dff61c13ba6cc5b605479ef
Base64:
44Sk