C:
char c = '\u80AB';
printf("%c\n", c); // Output: 肫
JavaScript:
const char = '\u80AB';
console.log(char); // Output: 肫
Java:
char c = '\u80AB';
System.out.println(c); // Output: 肫
JSON:
{"text": "\u80AB"} // Value: 肫
Python:
char = '\u80AB'
print(char) # Output: 肫
Perl:
my $char = "\x{80AB}";
print $char; # Output: 肫
PHP:
$char = "\x{80AB}";
echo $char; // Output: 肫
Ruby:
char = "\u{80AB}"
puts char # Output: 肫
Rust:
let c = '\u{80AB}';
println!("{}", c); // Output: 肫
Go:
char := '\u80AB'
fmt.Printf("%c\n", char) // Output: 肫
CSS:
/* CSS content property */
.element::before {
content: "\0080AB"; /* 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%AB
MD5:
6cc30b48bc36cee049078fc372690e48
SHA1:
bc9764c53991d47263a4e6e0f12581b42042ddd1
Base64:
6IKr