C:
char c = '\u6AB1';
printf("%c\n", c); // Output: 檱
JavaScript:
const char = '\u6AB1';
console.log(char); // Output: 檱
Java:
char c = '\u6AB1';
System.out.println(c); // Output: 檱
JSON:
{"text": "\u6AB1"} // Value: 檱
Python:
char = '\u6AB1'
print(char) # Output: 檱
Perl:
my $char = "\x{6AB1}";
print $char; # Output: 檱
PHP:
$char = "\x{6AB1}";
echo $char; // Output: 檱
Ruby:
char = "\u{6AB1}"
puts char # Output: 檱
Rust:
let c = '\u{6AB1}';
println!("{}", c); // Output: 檱
Go:
char := '\u6AB1'
fmt.Printf("%c\n", char) // Output: 檱
CSS:
/* CSS content property */
.element::before {
content: "\006AB1"; /* 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%AA%B1
MD5:
4f9a2dc51d225f25b5d128400af09984
SHA1:
48d835a4ff553af1df4b9ef7b93e04a1f1c710c8
Base64:
5qqx