C:
char c = '\u3118';
printf("%c\n", c); // Output: ㄘ
JavaScript:
const char = '\u3118';
console.log(char); // Output: ㄘ
Java:
char c = '\u3118';
System.out.println(c); // Output: ㄘ
JSON:
{"text": "\u3118"} // Value: ㄘ
Python:
char = '\u3118'
print(char) # Output: ㄘ
Perl:
my $char = "\x{3118}";
print $char; # Output: ㄘ
PHP:
$char = "\x{3118}";
echo $char; // Output: ㄘ
Ruby:
char = "\u{3118}"
puts char # Output: ㄘ
Rust:
let c = '\u{3118}';
println!("{}", c); // Output: ㄘ
Go:
char := '\u3118'
fmt.Printf("%c\n", char) // Output: ㄘ
CSS:
/* CSS content property */
.element::before {
content: "\003118"; /* 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%98
MD5:
9b4ce0b107b712702ded7c1d71d9142a
SHA1:
d16128f19253d292dd67f50f631023b6125b3ff3
Base64:
44SY