C:
char c = '\u3110';
printf("%c\n", c); // Output: ㄐ
JavaScript:
const char = '\u3110';
console.log(char); // Output: ㄐ
Java:
char c = '\u3110';
System.out.println(c); // Output: ㄐ
JSON:
{"text": "\u3110"} // Value: ㄐ
Python:
char = '\u3110'
print(char) # Output: ㄐ
Perl:
my $char = "\x{3110}";
print $char; # Output: ㄐ
PHP:
$char = "\x{3110}";
echo $char; // Output: ㄐ
Ruby:
char = "\u{3110}"
puts char # Output: ㄐ
Rust:
let c = '\u{3110}';
println!("{}", c); // Output: ㄐ
Go:
char := '\u3110'
fmt.Printf("%c\n", char) // Output: ㄐ
CSS:
/* CSS content property */
.element::before {
content: "\003110"; /* 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%90
MD5:
ae3982009f7790639939dc6669c9a956
SHA1:
42172e3e0a0bdca12afe5c24405960a739ba905b
Base64:
44SQ