C:
char c = '\u7013';
printf("%c\n", c); // Output: 瀓
JavaScript:
const char = '\u7013';
console.log(char); // Output: 瀓
Java:
char c = '\u7013';
System.out.println(c); // Output: 瀓
JSON:
{"text": "\u7013"} // Value: 瀓
Python:
char = '\u7013'
print(char) # Output: 瀓
Perl:
my $char = "\x{7013}";
print $char; # Output: 瀓
PHP:
$char = "\x{7013}";
echo $char; // Output: 瀓
Ruby:
char = "\u{7013}"
puts char # Output: 瀓
Rust:
let c = '\u{7013}';
println!("{}", c); // Output: 瀓
Go:
char := '\u7013'
fmt.Printf("%c\n", char) // Output: 瀓
CSS:
/* CSS content property */
.element::before {
content: "\007013"; /* 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%93
MD5:
385982d33667b2756f99e291f2d3abea
SHA1:
bd80806c6458adf8a091b8fe6e9977c7e77aeb1d
Base64:
54CT