C:
char c = '\u8082';
printf("%c\n", c); // Output: 肂
JavaScript:
const char = '\u8082';
console.log(char); // Output: 肂
Java:
char c = '\u8082';
System.out.println(c); // Output: 肂
JSON:
{"text": "\u8082"} // Value: 肂
Python:
char = '\u8082'
print(char) # Output: 肂
Perl:
my $char = "\x{8082}";
print $char; # Output: 肂
PHP:
$char = "\x{8082}";
echo $char; // Output: 肂
Ruby:
char = "\u{8082}"
puts char # Output: 肂
Rust:
let c = '\u{8082}';
println!("{}", c); // Output: 肂
Go:
char := '\u8082'
fmt.Printf("%c\n", char) // Output: 肂
CSS:
/* CSS content property */
.element::before {
content: "\008082"; /* 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=%E8%82%82
MD5:
2ebb7d80fd3bba4c0185e9e31389bf5e
SHA1:
1306e5575192eaba0dda7321fff057bdf6656bb4
Base64:
6IKC