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