C:
char c = '\u3108';
printf("%c\n", c); // Output: ㄈ
JavaScript:
const char = '\u3108';
console.log(char); // Output: ㄈ
Java:
char c = '\u3108';
System.out.println(c); // Output: ㄈ
JSON:
{"text": "\u3108"} // Value: ㄈ
Python:
char = '\u3108'
print(char) # Output: ㄈ
Perl:
my $char = "\x{3108}";
print $char; # Output: ㄈ
PHP:
$char = "\x{3108}";
echo $char; // Output: ㄈ
Ruby:
char = "\u{3108}"
puts char # Output: ㄈ
Rust:
let c = '\u{3108}';
println!("{}", c); // Output: ㄈ
Go:
char := '\u3108'
fmt.Printf("%c\n", char) // Output: ㄈ
CSS:
/* CSS content property */
.element::before {
content: "\003108"; /* 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%88
MD5:
c24d8cb25cc29511bbd87ac06b9ad37f
SHA1:
0ee3e6c150e661ffabf4c8e18847544c56fb3a37
Base64:
44SI