C:
char c = '\u7520';
printf("%c\n", c); // Output: 甠
JavaScript:
const char = '\u7520';
console.log(char); // Output: 甠
Java:
char c = '\u7520';
System.out.println(c); // Output: 甠
JSON:
{"text": "\u7520"} // Value: 甠
Python:
char = '\u7520'
print(char) # Output: 甠
Perl:
my $char = "\x{7520}";
print $char; # Output: 甠
PHP:
$char = "\x{7520}";
echo $char; // Output: 甠
Ruby:
char = "\u{7520}"
puts char # Output: 甠
Rust:
let c = '\u{7520}';
println!("{}", c); // Output: 甠
Go:
char := '\u7520'
fmt.Printf("%c\n", char) // Output: 甠
CSS:
/* CSS content property */
.element::before {
content: "\007520"; /* 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%94%A0
MD5:
4150c43505c4ef9afd350676b282eccf
SHA1:
e06abe143084767e205d9dd6b54e4134f190cc4c
Base64:
55Sg