C:
char c = '\u3116';
printf("%c\n", c); // Output: ㄖ
JavaScript:
const char = '\u3116';
console.log(char); // Output: ㄖ
Java:
char c = '\u3116';
System.out.println(c); // Output: ㄖ
JSON:
{"text": "\u3116"} // Value: ㄖ
Python:
char = '\u3116'
print(char) # Output: ㄖ
Perl:
my $char = "\x{3116}";
print $char; # Output: ㄖ
PHP:
$char = "\x{3116}";
echo $char; // Output: ㄖ
Ruby:
char = "\u{3116}"
puts char # Output: ㄖ
Rust:
let c = '\u{3116}';
println!("{}", c); // Output: ㄖ
Go:
char := '\u3116'
fmt.Printf("%c\n", char) // Output: ㄖ
CSS:
/* CSS content property */
.element::before {
content: "\003116"; /* 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%96
MD5:
d3bc083a29a7e3bbcb8c963fc4b8d8e8
SHA1:
6631573a07b6dbfb03f6dbbe4ab274978293d6df
Base64:
44SW