C:
char c = '\u3121';
printf("%c\n", c); // Output: ㄡ
JavaScript:
const char = '\u3121';
console.log(char); // Output: ㄡ
Java:
char c = '\u3121';
System.out.println(c); // Output: ㄡ
JSON:
{"text": "\u3121"} // Value: ㄡ
Python:
char = '\u3121'
print(char) # Output: ㄡ
Perl:
my $char = "\x{3121}";
print $char; # Output: ㄡ
PHP:
$char = "\x{3121}";
echo $char; // Output: ㄡ
Ruby:
char = "\u{3121}"
puts char # Output: ㄡ
Rust:
let c = '\u{3121}';
println!("{}", c); // Output: ㄡ
Go:
char := '\u3121'
fmt.Printf("%c\n", char) // Output: ㄡ
CSS:
/* CSS content property */
.element::before {
content: "\003121"; /* 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%A1
MD5:
02a53639c078fc93d2b6f8c4360bc262
SHA1:
f5d271ffb9eb0e8be7e88ca0faddeb370eab5476
Base64:
44Sh