C:
char c = '\u6132';
printf("%c\n", c); // Output: 愲
JavaScript:
const char = '\u6132';
console.log(char); // Output: 愲
Java:
char c = '\u6132';
System.out.println(c); // Output: 愲
JSON:
{"text": "\u6132"} // Value: 愲
Python:
char = '\u6132'
print(char) # Output: 愲
Perl:
my $char = "\x{6132}";
print $char; # Output: 愲
PHP:
$char = "\x{6132}";
echo $char; // Output: 愲
Ruby:
char = "\u{6132}"
puts char # Output: 愲
Rust:
let c = '\u{6132}';
println!("{}", c); // Output: 愲
Go:
char := '\u6132'
fmt.Printf("%c\n", char) // Output: 愲
CSS:
/* CSS content property */
.element::before {
content: "\006132"; /* 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%84%B2
MD5:
920645f74724e067b77d0aa499adde62
SHA1:
27ee073650ea1a6900393f938f234ca8b262bb70
Base64:
5oSy