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