C:
char c = '\u3129';
printf("%c\n", c); // Output: ㄩ
JavaScript:
const char = '\u3129';
console.log(char); // Output: ㄩ
Java:
char c = '\u3129';
System.out.println(c); // Output: ㄩ
JSON:
{"text": "\u3129"} // Value: ㄩ
Python:
char = '\u3129'
print(char) # Output: ㄩ
Perl:
my $char = "\x{3129}";
print $char; # Output: ㄩ
PHP:
$char = "\x{3129}";
echo $char; // Output: ㄩ
Ruby:
char = "\u{3129}"
puts char # Output: ㄩ
Rust:
let c = '\u{3129}';
println!("{}", c); // Output: ㄩ
Go:
char := '\u3129'
fmt.Printf("%c\n", char) // Output: ㄩ
CSS:
/* CSS content property */
.element::before {
content: "\003129"; /* 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%A9
MD5:
4cb1dfc3e0d0b9926df5a3e5564a2629
SHA1:
eb858b0ca3bb6b1a994942f8fcbbc5d036d30e41
Base64:
44Sp