C:
char c = '\u3115';
printf("%c\n", c); // Output: ㄕ
JavaScript:
const char = '\u3115';
console.log(char); // Output: ㄕ
Java:
char c = '\u3115';
System.out.println(c); // Output: ㄕ
JSON:
{"text": "\u3115"} // Value: ㄕ
Python:
char = '\u3115'
print(char) # Output: ㄕ
Perl:
my $char = "\x{3115}";
print $char; # Output: ㄕ
PHP:
$char = "\x{3115}";
echo $char; // Output: ㄕ
Ruby:
char = "\u{3115}"
puts char # Output: ㄕ
Rust:
let c = '\u{3115}';
println!("{}", c); // Output: ㄕ
Go:
char := '\u3115'
fmt.Printf("%c\n", char) // Output: ㄕ
CSS:
/* CSS content property */
.element::before {
content: "\003115"; /* 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%95
MD5:
f3358d85e98648794920ad99b5f62ca2
SHA1:
84030fe3efb9a4fc6afea150179fa9eb1d27959e
Base64:
44SV