C:
char c = '\u851D';
printf("%c\n", c); // Output: 蔝
JavaScript:
const char = '\u851D';
console.log(char); // Output: 蔝
Java:
char c = '\u851D';
System.out.println(c); // Output: 蔝
JSON:
{"text": "\u851D"} // Value: 蔝
Python:
char = '\u851D'
print(char) # Output: 蔝
Perl:
my $char = "\x{851D}";
print $char; # Output: 蔝
PHP:
$char = "\x{851D}";
echo $char; // Output: 蔝
Ruby:
char = "\u{851D}"
puts char # Output: 蔝
Rust:
let c = '\u{851D}';
println!("{}", c); // Output: 蔝
Go:
char := '\u851D'
fmt.Printf("%c\n", char) // Output: 蔝
CSS:
/* CSS content property */
.element::before {
content: "\00851D"; /* 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=%E8%94%9D
MD5:
eb94627a7b00fa504e6095e62359e578
SHA1:
3b62de4d1f9f7316395754abf831c337209ecee6
Base64:
6JSd