C:
char c = '\u6573';
printf("%c\n", c); // Output: 敳
JavaScript:
const char = '\u6573';
console.log(char); // Output: 敳
Java:
char c = '\u6573';
System.out.println(c); // Output: 敳
JSON:
{"text": "\u6573"} // Value: 敳
Python:
char = '\u6573'
print(char) # Output: 敳
Perl:
my $char = "\x{6573}";
print $char; # Output: 敳
PHP:
$char = "\x{6573}";
echo $char; // Output: 敳
Ruby:
char = "\u{6573}"
puts char # Output: 敳
Rust:
let c = '\u{6573}';
println!("{}", c); // Output: 敳
Go:
char := '\u6573'
fmt.Printf("%c\n", char) // Output: 敳
CSS:
/* CSS content property */
.element::before {
content: "\006573"; /* 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%95%B3
MD5:
8b3433685c5f4580547b6a41f45e2583
SHA1:
148e7ec9ad03fddd910469533956a7f21dc49b81
Base64:
5pWz