C:
char c = '\u7F67';
printf("%c\n", c); // Output: 罧
JavaScript:
const char = '\u7F67';
console.log(char); // Output: 罧
Java:
char c = '\u7F67';
System.out.println(c); // Output: 罧
JSON:
{"text": "\u7F67"} // Value: 罧
Python:
char = '\u7F67'
print(char) # Output: 罧
Perl:
my $char = "\x{7F67}";
print $char; # Output: 罧
PHP:
$char = "\x{7F67}";
echo $char; // Output: 罧
Ruby:
char = "\u{7F67}"
puts char # Output: 罧
Rust:
let c = '\u{7F67}';
println!("{}", c); // Output: 罧
Go:
char := '\u7F67'
fmt.Printf("%c\n", char) // Output: 罧
CSS:
/* CSS content property */
.element::before {
content: "\007F67"; /* 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=%E7%BD%A7
MD5:
b96e4e1f0439245ea6bdd2feab843d29
SHA1:
176c09af2025ab2b419e16d5e1633e5187eff41b
Base64:
572n