C:
char c = '\u8ACA';
printf("%c\n", c); // Output: 諊
JavaScript:
const char = '\u8ACA';
console.log(char); // Output: 諊
Java:
char c = '\u8ACA';
System.out.println(c); // Output: 諊
JSON:
{"text": "\u8ACA"} // Value: 諊
Python:
char = '\u8ACA'
print(char) # Output: 諊
Perl:
my $char = "\x{8ACA}";
print $char; # Output: 諊
PHP:
$char = "\x{8ACA}";
echo $char; // Output: 諊
Ruby:
char = "\u{8ACA}"
puts char # Output: 諊
Rust:
let c = '\u{8ACA}';
println!("{}", c); // Output: 諊
Go:
char := '\u8ACA'
fmt.Printf("%c\n", char) // Output: 諊
CSS:
/* CSS content property */
.element::before {
content: "\008ACA"; /* 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=%E8%AB%8A
MD5:
4c3ca276a5d08c0b02db993a877788d4
SHA1:
80c40b4c8a99c5440ccb3f94aec3926b1024b0d6
Base64:
6KuK