C:
char c = '\u99C1';
printf("%c\n", c); // Output: 駁
JavaScript:
const char = '\u99C1';
console.log(char); // Output: 駁
Java:
char c = '\u99C1';
System.out.println(c); // Output: 駁
JSON:
{"text": "\u99C1"} // Value: 駁
Python:
char = '\u99C1'
print(char) # Output: 駁
Perl:
my $char = "\x{99C1}";
print $char; # Output: 駁
PHP:
$char = "\x{99C1}";
echo $char; // Output: 駁
Ruby:
char = "\u{99C1}"
puts char # Output: 駁
Rust:
let c = '\u{99C1}';
println!("{}", c); // Output: 駁
Go:
char := '\u99C1'
fmt.Printf("%c\n", char) // Output: 駁
CSS:
/* CSS content property */
.element::before {
content: "\0099C1"; /* 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=%E9%A7%81
MD5:
34192f17306e3c8512045fbe3a442d39
SHA1:
d5ef2d89c34e41b74b7115def797efe426ea177f
Base64:
6aeB