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