C:
char c = '\u3058';
printf("%c\n", c); // Output: じ
JavaScript:
const char = '\u3058';
console.log(char); // Output: じ
Java:
char c = '\u3058';
System.out.println(c); // Output: じ
JSON:
{"text": "\u3058"} // Value: じ
Python:
char = '\u3058'
print(char) # Output: じ
Perl:
my $char = "\x{3058}";
print $char; # Output: じ
PHP:
$char = "\x{3058}";
echo $char; // Output: じ
Ruby:
char = "\u{3058}"
puts char # Output: じ
Rust:
let c = '\u{3058}';
println!("{}", c); // Output: じ
Go:
char := '\u3058'
fmt.Printf("%c\n", char) // Output: じ
CSS:
/* CSS content property */
.element::before {
content: "\003058"; /* 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%81%98
MD5:
c272e7aa4ed59f6356904c4064481c9c
SHA1:
41f11fe610d40e3e840ec247ba4c16b43e98c2d3
Base64:
44GY