C:
char c = '\u3126';
printf("%c\n", c); // Output: ㄦ
JavaScript:
const char = '\u3126';
console.log(char); // Output: ㄦ
Java:
char c = '\u3126';
System.out.println(c); // Output: ㄦ
JSON:
{"text": "\u3126"} // Value: ㄦ
Python:
char = '\u3126'
print(char) # Output: ㄦ
Perl:
my $char = "\x{3126}";
print $char; # Output: ㄦ
PHP:
$char = "\x{3126}";
echo $char; // Output: ㄦ
Ruby:
char = "\u{3126}"
puts char # Output: ㄦ
Rust:
let c = '\u{3126}';
println!("{}", c); // Output: ㄦ
Go:
char := '\u3126'
fmt.Printf("%c\n", char) // Output: ㄦ
CSS:
/* CSS content property */
.element::before {
content: "\003126"; /* 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%A6
MD5:
ee5f3e6f0c764e4b51480e4bf334648d
SHA1:
70b41daa545fc1a86ec3923cf4c35fbcdf18926f
Base64:
44Sm