C:
char c = '\u5F65';
printf("%c\n", c); // Output: 彥
JavaScript:
const char = '\u5F65';
console.log(char); // Output: 彥
Java:
char c = '\u5F65';
System.out.println(c); // Output: 彥
JSON:
{"text": "\u5F65"} // Value: 彥
Python:
char = '\u5F65'
print(char) # Output: 彥
Perl:
my $char = "\x{5F65}";
print $char; # Output: 彥
PHP:
$char = "\x{5F65}";
echo $char; // Output: 彥
Ruby:
char = "\u{5F65}"
puts char # Output: 彥
Rust:
let c = '\u{5F65}';
println!("{}", c); // Output: 彥
Go:
char := '\u5F65'
fmt.Printf("%c\n", char) // Output: 彥
CSS:
/* CSS content property */
.element::before {
content: "\005F65"; /* 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=%E5%BD%A5
MD5:
e23376d3b9c60fa1270b5538b873d9ee
SHA1:
9eaf7ec6fbd405d1e32315bccf3be145a1fa02b8
Base64:
5b2l