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