C:
char c = '\u3105';
printf("%c\n", c); // Output: ㄅ
JavaScript:
const char = '\u3105';
console.log(char); // Output: ㄅ
Java:
char c = '\u3105';
System.out.println(c); // Output: ㄅ
JSON:
{"text": "\u3105"} // Value: ㄅ
Python:
char = '\u3105'
print(char) # Output: ㄅ
Perl:
my $char = "\x{3105}";
print $char; # Output: ㄅ
PHP:
$char = "\x{3105}";
echo $char; // Output: ㄅ
Ruby:
char = "\u{3105}"
puts char # Output: ㄅ
Rust:
let c = '\u{3105}';
println!("{}", c); // Output: ㄅ
Go:
char := '\u3105'
fmt.Printf("%c\n", char) // Output: ㄅ
CSS:
/* CSS content property */
.element::before {
content: "\003105"; /* 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%85
MD5:
40a9acb343b76de71840a7e8b3e8bb06
SHA1:
208d0914ed9dab09b6400f2053130a760be1aa3d
Base64:
44SF