C:
char c = '\u7025';
printf("%c\n", c); // Output: 瀥
JavaScript:
const char = '\u7025';
console.log(char); // Output: 瀥
Java:
char c = '\u7025';
System.out.println(c); // Output: 瀥
JSON:
{"text": "\u7025"} // Value: 瀥
Python:
char = '\u7025'
print(char) # Output: 瀥
Perl:
my $char = "\x{7025}";
print $char; # Output: 瀥
PHP:
$char = "\x{7025}";
echo $char; // Output: 瀥
Ruby:
char = "\u{7025}"
puts char # Output: 瀥
Rust:
let c = '\u{7025}';
println!("{}", c); // Output: 瀥
Go:
char := '\u7025'
fmt.Printf("%c\n", char) // Output: 瀥
CSS:
/* CSS content property */
.element::before {
content: "\007025"; /* 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=%E7%80%A5
MD5:
651d64b47a99f10ae74f1b647febefbd
SHA1:
019ae73c72d2c0d86e4b3a2e895c7b11a2384488
Base64:
54Cl