C:
char c = '\u5181';
printf("%c\n", c); // Output: 冁
JavaScript:
const char = '\u5181';
console.log(char); // Output: 冁
Java:
char c = '\u5181';
System.out.println(c); // Output: 冁
JSON:
{"text": "\u5181"} // Value: 冁
Python:
char = '\u5181'
print(char) # Output: 冁
Perl:
my $char = "\x{5181}";
print $char; # Output: 冁
PHP:
$char = "\x{5181}";
echo $char; // Output: 冁
Ruby:
char = "\u{5181}"
puts char # Output: 冁
Rust:
let c = '\u{5181}';
println!("{}", c); // Output: 冁
Go:
char := '\u5181'
fmt.Printf("%c\n", char) // Output: 冁
CSS:
/* CSS content property */
.element::before {
content: "\005181"; /* 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%81
MD5:
819ba2f3bfeae1d73cf69f5fc4dc40d2
SHA1:
ca5002506566118c05214448452c3c7a4ba3bc59
Base64:
5YaB