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