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