C:
char c = '\u7032';
printf("%c\n", c); // Output: 瀲
JavaScript:
const char = '\u7032';
console.log(char); // Output: 瀲
Java:
char c = '\u7032';
System.out.println(c); // Output: 瀲
JSON:
{"text": "\u7032"} // Value: 瀲
Python:
char = '\u7032'
print(char) # Output: 瀲
Perl:
my $char = "\x{7032}";
print $char; # Output: 瀲
PHP:
$char = "\x{7032}";
echo $char; // Output: 瀲
Ruby:
char = "\u{7032}"
puts char # Output: 瀲
Rust:
let c = '\u{7032}';
println!("{}", c); // Output: 瀲
Go:
char := '\u7032'
fmt.Printf("%c\n", char) // Output: 瀲
CSS:
/* CSS content property */
.element::before {
content: "\007032"; /* 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%B2
MD5:
1164a8c5591e01dcf61bb9245e422569
SHA1:
9de3dbb852072b666c83695f16e61d5ceb70f058
Base64:
54Cy