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