C:
char c = '\u6815';
printf("%c\n", c); // Output: 栕
JavaScript:
const char = '\u6815';
console.log(char); // Output: 栕
Java:
char c = '\u6815';
System.out.println(c); // Output: 栕
JSON:
{"text": "\u6815"} // Value: 栕
Python:
char = '\u6815'
print(char) # Output: 栕
Perl:
my $char = "\x{6815}";
print $char; # Output: 栕
PHP:
$char = "\x{6815}";
echo $char; // Output: 栕
Ruby:
char = "\u{6815}"
puts char # Output: 栕
Rust:
let c = '\u{6815}';
println!("{}", c); // Output: 栕
Go:
char := '\u6815'
fmt.Printf("%c\n", char) // Output: 栕
CSS:
/* CSS content property */
.element::before {
content: "\006815"; /* 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%95
MD5:
e7af26a92674a77b5d4da4c6397ccd23
SHA1:
8519a9fb1bdfdb24e4ba40a7d89fed81f598b61a
Base64:
5qCV