C:
char c = '\u6804';
printf("%c\n", c); // Output: 栄
JavaScript:
const char = '\u6804';
console.log(char); // Output: 栄
Java:
char c = '\u6804';
System.out.println(c); // Output: 栄
JSON:
{"text": "\u6804"} // Value: 栄
Python:
char = '\u6804'
print(char) # Output: 栄
Perl:
my $char = "\x{6804}";
print $char; # Output: 栄
PHP:
$char = "\x{6804}";
echo $char; // Output: 栄
Ruby:
char = "\u{6804}"
puts char # Output: 栄
Rust:
let c = '\u{6804}';
println!("{}", c); // Output: 栄
Go:
char := '\u6804'
fmt.Printf("%c\n", char) // Output: 栄
CSS:
/* CSS content property */
.element::before {
content: "\006804"; /* 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%84
MD5:
d6c833249ff1bf41bb35b30f117c4fb2
SHA1:
0253e70094ab9770fb63afe42336d0f8a6b1b8ee
Base64:
5qCE