C:
char c = '\u6562';
printf("%c\n", c); // Output: 敢
JavaScript:
const char = '\u6562';
console.log(char); // Output: 敢
Java:
char c = '\u6562';
System.out.println(c); // Output: 敢
JSON:
{"text": "\u6562"} // Value: 敢
Python:
char = '\u6562'
print(char) # Output: 敢
Perl:
my $char = "\x{6562}";
print $char; # Output: 敢
PHP:
$char = "\x{6562}";
echo $char; // Output: 敢
Ruby:
char = "\u{6562}"
puts char # Output: 敢
Rust:
let c = '\u{6562}';
println!("{}", c); // Output: 敢
Go:
char := '\u6562'
fmt.Printf("%c\n", char) // Output: 敢
CSS:
/* CSS content property */
.element::before {
content: "\006562"; /* 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%A2
MD5:
12892cf75f355e20f29a6c2ccd354e06
SHA1:
51eff838b1fb89e177a131424180c83840cc02ab
Base64:
5pWi