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