C:
char c = '\u6800';
printf("%c\n", c); // Output: 栀
JavaScript:
const char = '\u6800';
console.log(char); // Output: 栀
Java:
char c = '\u6800';
System.out.println(c); // Output: 栀
JSON:
{"text": "\u6800"} // Value: 栀
Python:
char = '\u6800'
print(char) # Output: 栀
Perl:
my $char = "\x{6800}";
print $char; # Output: 栀
PHP:
$char = "\x{6800}";
echo $char; // Output: 栀
Ruby:
char = "\u{6800}"
puts char # Output: 栀
Rust:
let c = '\u{6800}';
println!("{}", c); // Output: 栀
Go:
char := '\u6800'
fmt.Printf("%c\n", char) // Output: 栀
CSS:
/* CSS content property */
.element::before {
content: "\006800"; /* 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%A0%80
MD5:
4b67633b32b41d3f65e3d3d8928d129e
SHA1:
499b429ce7415a13e48a0f29a53cef345323f274
Base64:
5qCA