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