C:
char c = '\u3122';
printf("%c\n", c); // Output: ㄢ
JavaScript:
const char = '\u3122';
console.log(char); // Output: ㄢ
Java:
char c = '\u3122';
System.out.println(c); // Output: ㄢ
JSON:
{"text": "\u3122"} // Value: ㄢ
Python:
char = '\u3122'
print(char) # Output: ㄢ
Perl:
my $char = "\x{3122}";
print $char; # Output: ㄢ
PHP:
$char = "\x{3122}";
echo $char; // Output: ㄢ
Ruby:
char = "\u{3122}"
puts char # Output: ㄢ
Rust:
let c = '\u{3122}';
println!("{}", c); // Output: ㄢ
Go:
char := '\u3122'
fmt.Printf("%c\n", char) // Output: ㄢ
CSS:
/* CSS content property */
.element::before {
content: "\003122"; /* 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%A2
MD5:
28ac9a2d240fcdf6467f37450cb76dcc
SHA1:
f07e1997c3dc617278861f5890ef9b358ab22380
Base64:
44Si