C:
char c = '\u7020';
printf("%c\n", c); // Output: 瀠
JavaScript:
const char = '\u7020';
console.log(char); // Output: 瀠
Java:
char c = '\u7020';
System.out.println(c); // Output: 瀠
JSON:
{"text": "\u7020"} // Value: 瀠
Python:
char = '\u7020'
print(char) # Output: 瀠
Perl:
my $char = "\x{7020}";
print $char; # Output: 瀠
PHP:
$char = "\x{7020}";
echo $char; // Output: 瀠
Ruby:
char = "\u{7020}"
puts char # Output: 瀠
Rust:
let c = '\u{7020}';
println!("{}", c); // Output: 瀠
Go:
char := '\u7020'
fmt.Printf("%c\n", char) // Output: 瀠
CSS:
/* CSS content property */
.element::before {
content: "\007020"; /* 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%A0
MD5:
4ed9ae2d5332c05c4cc0597594f6549b
SHA1:
4632b4a7fe16f457a270519303d08da54e3d221e
Base64:
54Cg