C:
char c = '\u5182';
printf("%c\n", c); // Output: 冂
JavaScript:
const char = '\u5182';
console.log(char); // Output: 冂
Java:
char c = '\u5182';
System.out.println(c); // Output: 冂
JSON:
{"text": "\u5182"} // Value: 冂
Python:
char = '\u5182'
print(char) # Output: 冂
Perl:
my $char = "\x{5182}";
print $char; # Output: 冂
PHP:
$char = "\x{5182}";
echo $char; // Output: 冂
Ruby:
char = "\u{5182}"
puts char # Output: 冂
Rust:
let c = '\u{5182}';
println!("{}", c); // Output: 冂
Go:
char := '\u5182'
fmt.Printf("%c\n", char) // Output: 冂
CSS:
/* CSS content property */
.element::before {
content: "\005182"; /* 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%82
MD5:
311d9972821b416db1474b3c7157fdc2
SHA1:
59760104c848b03bd6966e4835eeab13ddf5bdff
Base64:
5YaC