C:
char c = '\u8AF1';
printf("%c\n", c); // Output: 諱
JavaScript:
const char = '\u8AF1';
console.log(char); // Output: 諱
Java:
char c = '\u8AF1';
System.out.println(c); // Output: 諱
JSON:
{"text": "\u8AF1"} // Value: 諱
Python:
char = '\u8AF1'
print(char) # Output: 諱
Perl:
my $char = "\x{8AF1}";
print $char; # Output: 諱
PHP:
$char = "\x{8AF1}";
echo $char; // Output: 諱
Ruby:
char = "\u{8AF1}"
puts char # Output: 諱
Rust:
let c = '\u{8AF1}';
println!("{}", c); // Output: 諱
Go:
char := '\u8AF1'
fmt.Printf("%c\n", char) // Output: 諱
CSS:
/* CSS content property */
.element::before {
content: "\008AF1"; /* 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%B1
MD5:
7d78e3cc2ce8d55a4691350abf756c5a
SHA1:
2abf7238fd9212ca1ee99d1005f23f54f64dcff0
Base64:
6Kux