C:
char c = '\u6994';
printf("%c\n", c); // Output: 榔
JavaScript:
const char = '\u6994';
console.log(char); // Output: 榔
Java:
char c = '\u6994';
System.out.println(c); // Output: 榔
JSON:
{"text": "\u6994"} // Value: 榔
Python:
char = '\u6994'
print(char) # Output: 榔
Perl:
my $char = "\x{6994}";
print $char; # Output: 榔
PHP:
$char = "\x{6994}";
echo $char; // Output: 榔
Ruby:
char = "\u{6994}"
puts char # Output: 榔
Rust:
let c = '\u{6994}';
println!("{}", c); // Output: 榔
Go:
char := '\u6994'
fmt.Printf("%c\n", char) // Output: 榔
CSS:
/* CSS content property */
.element::before {
content: "\006994"; /* 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%94
MD5:
f9c72027bd3a0f8aa856f1a1a9109bea
SHA1:
729d83987201c4fc58b60eac464e15bb60508692
Base64:
5qaU