C:
char c = '\u3120';
printf("%c\n", c); // Output: ㄠ
JavaScript:
const char = '\u3120';
console.log(char); // Output: ㄠ
Java:
char c = '\u3120';
System.out.println(c); // Output: ㄠ
JSON:
{"text": "\u3120"} // Value: ㄠ
Python:
char = '\u3120'
print(char) # Output: ㄠ
Perl:
my $char = "\x{3120}";
print $char; # Output: ㄠ
PHP:
$char = "\x{3120}";
echo $char; // Output: ㄠ
Ruby:
char = "\u{3120}"
puts char # Output: ㄠ
Rust:
let c = '\u{3120}';
println!("{}", c); // Output: ㄠ
Go:
char := '\u3120'
fmt.Printf("%c\n", char) // Output: ㄠ
CSS:
/* CSS content property */
.element::before {
content: "\003120"; /* 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%A0
MD5:
be870a510563f9e05d6647829e5dc83b
SHA1:
353d9b5c1e5d93f25efb4d3874d9ae7d78fd05af
Base64:
44Sg