C:
char c = '\u60AB';
printf("%c\n", c); // Output: 悫
JavaScript:
const char = '\u60AB';
console.log(char); // Output: 悫
Java:
char c = '\u60AB';
System.out.println(c); // Output: 悫
JSON:
{"text": "\u60AB"} // Value: 悫
Python:
char = '\u60AB'
print(char) # Output: 悫
Perl:
my $char = "\x{60AB}";
print $char; # Output: 悫
PHP:
$char = "\x{60AB}";
echo $char; // Output: 悫
Ruby:
char = "\u{60AB}"
puts char # Output: 悫
Rust:
let c = '\u{60AB}';
println!("{}", c); // Output: 悫
Go:
char := '\u60AB'
fmt.Printf("%c\n", char) // Output: 悫
CSS:
/* CSS content property */
.element::before {
content: "\0060AB"; /* 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=%E6%82%AB
MD5:
c52a0aa872311fc14adaf4abde7eab01
SHA1:
5769168aaf376ca8e19b3c3c743ae91095f4def0
Base64:
5oKr