C:
char c = '\u7037';
printf("%c\n", c); // Output: 瀷
JavaScript:
const char = '\u7037';
console.log(char); // Output: 瀷
Java:
char c = '\u7037';
System.out.println(c); // Output: 瀷
JSON:
{"text": "\u7037"} // Value: 瀷
Python:
char = '\u7037'
print(char) # Output: 瀷
Perl:
my $char = "\x{7037}";
print $char; # Output: 瀷
PHP:
$char = "\x{7037}";
echo $char; // Output: 瀷
Ruby:
char = "\u{7037}"
puts char # Output: 瀷
Rust:
let c = '\u{7037}';
println!("{}", c); // Output: 瀷
Go:
char := '\u7037'
fmt.Printf("%c\n", char) // Output: 瀷
CSS:
/* CSS content property */
.element::before {
content: "\007037"; /* 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%B7
MD5:
d7702afa97424ce84527e8fe2a39e62d
SHA1:
db54804fe649f5fad8a61a4a4d6885aa01043ab2
Base64:
54C3