C:
char c = '\u5186';
printf("%c\n", c); // Output: 円
JavaScript:
const char = '\u5186';
console.log(char); // Output: 円
Java:
char c = '\u5186';
System.out.println(c); // Output: 円
JSON:
{"text": "\u5186"} // Value: 円
Python:
char = '\u5186'
print(char) # Output: 円
Perl:
my $char = "\x{5186}";
print $char; # Output: 円
PHP:
$char = "\x{5186}";
echo $char; // Output: 円
Ruby:
char = "\u{5186}"
puts char # Output: 円
Rust:
let c = '\u{5186}';
println!("{}", c); // Output: 円
Go:
char := '\u5186'
fmt.Printf("%c\n", char) // Output: 円
CSS:
/* CSS content property */
.element::before {
content: "\005186"; /* 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=%E5%86%86
MD5:
a6de4cbffa92dc5b3f797fe3acc3536b
SHA1:
c257210e5fc3d299422054aca66ec36e6739f79f
Base64:
5YaG