C:
char c = '\u7029';
printf("%c\n", c); // Output: 瀩
JavaScript:
const char = '\u7029';
console.log(char); // Output: 瀩
Java:
char c = '\u7029';
System.out.println(c); // Output: 瀩
JSON:
{"text": "\u7029"} // Value: 瀩
Python:
char = '\u7029'
print(char) # Output: 瀩
Perl:
my $char = "\x{7029}";
print $char; # Output: 瀩
PHP:
$char = "\x{7029}";
echo $char; // Output: 瀩
Ruby:
char = "\u{7029}"
puts char # Output: 瀩
Rust:
let c = '\u{7029}';
println!("{}", c); // Output: 瀩
Go:
char := '\u7029'
fmt.Printf("%c\n", char) // Output: 瀩
CSS:
/* CSS content property */
.element::before {
content: "\007029"; /* 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%A9
MD5:
e7d1c0894a3a7fd7b230eef7d92a0ee0
SHA1:
1dce9b44d92947e156093190cc39402c4163c518
Base64:
54Cp