C:
char c = '\u7205';
printf("%c\n", c); // Output: 爅
JavaScript:
const char = '\u7205';
console.log(char); // Output: 爅
Java:
char c = '\u7205';
System.out.println(c); // Output: 爅
JSON:
{"text": "\u7205"} // Value: 爅
Python:
char = '\u7205'
print(char) # Output: 爅
Perl:
my $char = "\x{7205}";
print $char; # Output: 爅
PHP:
$char = "\x{7205}";
echo $char; // Output: 爅
Ruby:
char = "\u{7205}"
puts char # Output: 爅
Rust:
let c = '\u{7205}';
println!("{}", c); // Output: 爅
Go:
char := '\u7205'
fmt.Printf("%c\n", char) // Output: 爅
CSS:
/* CSS content property */
.element::before {
content: "\007205"; /* 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=%E7%88%85
MD5:
77808d1b289779cb5b5bd8a3af4f543f
SHA1:
1affa31d4ace3dd6637fe022fab654cc9a1ccab9
Base64:
54iF