C:
char c = '\u6989';
printf("%c\n", c); // Output: 榉
JavaScript:
const char = '\u6989';
console.log(char); // Output: 榉
Java:
char c = '\u6989';
System.out.println(c); // Output: 榉
JSON:
{"text": "\u6989"} // Value: 榉
Python:
char = '\u6989'
print(char) # Output: 榉
Perl:
my $char = "\x{6989}";
print $char; # Output: 榉
PHP:
$char = "\x{6989}";
echo $char; // Output: 榉
Ruby:
char = "\u{6989}"
puts char # Output: 榉
Rust:
let c = '\u{6989}';
println!("{}", c); // Output: 榉
Go:
char := '\u6989'
fmt.Printf("%c\n", char) // Output: 榉
CSS:
/* CSS content property */
.element::before {
content: "\006989"; /* 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%A6%89
MD5:
59f2a344e220e7e9e50013ed25bfd886
SHA1:
57a8e67304a0f562c20884fa7af178dd217ab56f
Base64:
5qaJ