C:
char c = '\u30DC';
printf("%c\n", c); // Output: ボ
JavaScript:
const char = '\u30DC';
console.log(char); // Output: ボ
Java:
char c = '\u30DC';
System.out.println(c); // Output: ボ
JSON:
{"text": "\u30DC"} // Value: ボ
Python:
char = '\u30DC'
print(char) # Output: ボ
Perl:
my $char = "\x{30DC}";
print $char; # Output: ボ
PHP:
$char = "\x{30DC}";
echo $char; // Output: ボ
Ruby:
char = "\u{30DC}"
puts char # Output: ボ
Rust:
let c = '\u{30DC}';
println!("{}", c); // Output: ボ
Go:
char := '\u30DC'
fmt.Printf("%c\n", char) // Output: ボ
CSS:
/* CSS content property */
.element::before {
content: "\0030DC"; /* 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%9C
MD5:
72d9f07bb52ae588338d4d00015cd25a
SHA1:
c6be80a62e6177fd793a01c631197c0ae42c10eb
Base64:
44Oc