C:
char c = '\u3123';
printf("%c\n", c); // Output: ㄣ
JavaScript:
const char = '\u3123';
console.log(char); // Output: ㄣ
Java:
char c = '\u3123';
System.out.println(c); // Output: ㄣ
JSON:
{"text": "\u3123"} // Value: ㄣ
Python:
char = '\u3123'
print(char) # Output: ㄣ
Perl:
my $char = "\x{3123}";
print $char; # Output: ㄣ
PHP:
$char = "\x{3123}";
echo $char; // Output: ㄣ
Ruby:
char = "\u{3123}"
puts char # Output: ㄣ
Rust:
let c = '\u{3123}';
println!("{}", c); // Output: ㄣ
Go:
char := '\u3123'
fmt.Printf("%c\n", char) // Output: ㄣ
CSS:
/* CSS content property */
.element::before {
content: "\003123"; /* 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%A3
MD5:
29b1463035678a50662aef19cc061887
SHA1:
0d42f402d17c7ed61171c1fabd6f86cf854a8451
Base64:
44Sj