C:
char c = '\u6896';
printf("%c\n", c); // Output: 梖
JavaScript:
const char = '\u6896';
console.log(char); // Output: 梖
Java:
char c = '\u6896';
System.out.println(c); // Output: 梖
JSON:
{"text": "\u6896"} // Value: 梖
Python:
char = '\u6896'
print(char) # Output: 梖
Perl:
my $char = "\x{6896}";
print $char; # Output: 梖
PHP:
$char = "\x{6896}";
echo $char; // Output: 梖
Ruby:
char = "\u{6896}"
puts char # Output: 梖
Rust:
let c = '\u{6896}';
println!("{}", c); // Output: 梖
Go:
char := '\u6896'
fmt.Printf("%c\n", char) // Output: 梖
CSS:
/* CSS content property */
.element::before {
content: "\006896"; /* 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=%E6%A2%96
MD5:
c7ecf8eea6b1e1135c39af363ad7876e
SHA1:
1a57348946db144eae2c20aebcbe3ed5693166ae
Base64:
5qKW