C:
char c = '\u7451';
printf("%c\n", c); // Output: 瑑
JavaScript:
const char = '\u7451';
console.log(char); // Output: 瑑
Java:
char c = '\u7451';
System.out.println(c); // Output: 瑑
JSON:
{"text": "\u7451"} // Value: 瑑
Python:
char = '\u7451'
print(char) # Output: 瑑
Perl:
my $char = "\x{7451}";
print $char; # Output: 瑑
PHP:
$char = "\x{7451}";
echo $char; // Output: 瑑
Ruby:
char = "\u{7451}"
puts char # Output: 瑑
Rust:
let c = '\u{7451}';
println!("{}", c); // Output: 瑑
Go:
char := '\u7451'
fmt.Printf("%c\n", char) // Output: 瑑
CSS:
/* CSS content property */
.element::before {
content: "\007451"; /* 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%91%91
MD5:
da98879ce73bd17002b852fecc718ea9
SHA1:
b443899126f98ca543039cc8a2f2d689977cb7e6
Base64:
55GR