C:
char c = '\u3080';
printf("%c\n", c); // Output: む
JavaScript:
const char = '\u3080';
console.log(char); // Output: む
Java:
char c = '\u3080';
System.out.println(c); // Output: む
JSON:
{"text": "\u3080"} // Value: む
Python:
char = '\u3080'
print(char) # Output: む
Perl:
my $char = "\x{3080}";
print $char; # Output: む
PHP:
$char = "\x{3080}";
echo $char; // Output: む
Ruby:
char = "\u{3080}"
puts char # Output: む
Rust:
let c = '\u{3080}';
println!("{}", c); // Output: む
Go:
char := '\u3080'
fmt.Printf("%c\n", char) // Output: む
CSS:
/* CSS content property */
.element::before {
content: "\003080"; /* 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%82%80
MD5:
08f736b4e1dd63c78c55a26939193cc9
SHA1:
50029791cb9f00264febf9b28e3d85102869045e
Base64:
44KA