C:
char c = '\u6849';
printf("%c\n", c); // Output: 桉
JavaScript:
const char = '\u6849';
console.log(char); // Output: 桉
Java:
char c = '\u6849';
System.out.println(c); // Output: 桉
JSON:
{"text": "\u6849"} // Value: 桉
Python:
char = '\u6849'
print(char) # Output: 桉
Perl:
my $char = "\x{6849}";
print $char; # Output: 桉
PHP:
$char = "\x{6849}";
echo $char; // Output: 桉
Ruby:
char = "\u{6849}"
puts char # Output: 桉
Rust:
let c = '\u{6849}';
println!("{}", c); // Output: 桉
Go:
char := '\u6849'
fmt.Printf("%c\n", char) // Output: 桉
CSS:
/* CSS content property */
.element::before {
content: "\006849"; /* 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%A1%89
MD5:
c7032eae86615c04d6ff0380f5f47c24
SHA1:
3091741a5ce278e89a6f55af4cc53ce088646165
Base64:
5qGJ