C:
char c = '\u3128';
printf("%c\n", c); // Output: ㄨ
JavaScript:
const char = '\u3128';
console.log(char); // Output: ㄨ
Java:
char c = '\u3128';
System.out.println(c); // Output: ㄨ
JSON:
{"text": "\u3128"} // Value: ㄨ
Python:
char = '\u3128'
print(char) # Output: ㄨ
Perl:
my $char = "\x{3128}";
print $char; # Output: ㄨ
PHP:
$char = "\x{3128}";
echo $char; // Output: ㄨ
Ruby:
char = "\u{3128}"
puts char # Output: ㄨ
Rust:
let c = '\u{3128}';
println!("{}", c); // Output: ㄨ
Go:
char := '\u3128'
fmt.Printf("%c\n", char) // Output: ㄨ
CSS:
/* CSS content property */
.element::before {
content: "\003128"; /* 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%A8
MD5:
8b30ab8af01bb2d691fde30119ef5ad9
SHA1:
b5c7a1dbea5bb74840067552282b8c8d61578c79
Base64:
44So