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