C:
char c = '\u7DEC';
printf("%c\n", c); // Output: 緬
JavaScript:
const char = '\u7DEC';
console.log(char); // Output: 緬
Java:
char c = '\u7DEC';
System.out.println(c); // Output: 緬
JSON:
{"text": "\u7DEC"} // Value: 緬
Python:
char = '\u7DEC'
print(char) # Output: 緬
Perl:
my $char = "\x{7DEC}";
print $char; # Output: 緬
PHP:
$char = "\x{7DEC}";
echo $char; // Output: 緬
Ruby:
char = "\u{7DEC}"
puts char # Output: 緬
Rust:
let c = '\u{7DEC}';
println!("{}", c); // Output: 緬
Go:
char := '\u7DEC'
fmt.Printf("%c\n", char) // Output: 緬
CSS:
/* CSS content property */
.element::before {
content: "\007DEC"; /* 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%B7%AC
MD5:
59a17e40a0bc639124a5f852b306c0bb
SHA1:
15d89f7d7c3e4ef88aa370fda8c6a248178d6edb
Base64:
57es