C:
char c = '\u5AB2';
printf("%c\n", c); // Output: 媲
JavaScript:
const char = '\u5AB2';
console.log(char); // Output: 媲
Java:
char c = '\u5AB2';
System.out.println(c); // Output: 媲
JSON:
{"text": "\u5AB2"} // Value: 媲
Python:
char = '\u5AB2'
print(char) # Output: 媲
Perl:
my $char = "\x{5AB2}";
print $char; # Output: 媲
PHP:
$char = "\x{5AB2}";
echo $char; // Output: 媲
Ruby:
char = "\u{5AB2}"
puts char # Output: 媲
Rust:
let c = '\u{5AB2}';
println!("{}", c); // Output: 媲
Go:
char := '\u5AB2'
fmt.Printf("%c\n", char) // Output: 媲
CSS:
/* CSS content property */
.element::before {
content: "\005AB2"; /* 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%AA%B2
MD5:
a6afa7ac3eb1e3793c3f65c1a4092e02
SHA1:
1286c03a64ee08330574fb7a4d4ba4f975490fc2
Base64:
5aqy