C:
char c = '\u30C2';
printf("%c\n", c); // Output: ヂ
JavaScript:
const char = '\u30C2';
console.log(char); // Output: ヂ
Java:
char c = '\u30C2';
System.out.println(c); // Output: ヂ
JSON:
{"text": "\u30C2"} // Value: ヂ
Python:
char = '\u30C2'
print(char) # Output: ヂ
Perl:
my $char = "\x{30C2}";
print $char; # Output: ヂ
PHP:
$char = "\x{30C2}";
echo $char; // Output: ヂ
Ruby:
char = "\u{30C2}"
puts char # Output: ヂ
Rust:
let c = '\u{30C2}';
println!("{}", c); // Output: ヂ
Go:
char := '\u30C2'
fmt.Printf("%c\n", char) // Output: ヂ
CSS:
/* CSS content property */
.element::before {
content: "\0030C2"; /* 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%83%82
MD5:
8727bdc6bdb0341e1f5f8f903b425c03
SHA1:
71ece90ea76ac036f3d938860077f70f2c3246bd
Base64:
44OC