C:
char c = '\u8C1F';
printf("%c\n", c); // Output: 谟
JavaScript:
const char = '\u8C1F';
console.log(char); // Output: 谟
Java:
char c = '\u8C1F';
System.out.println(c); // Output: 谟
JSON:
{"text": "\u8C1F"} // Value: 谟
Python:
char = '\u8C1F'
print(char) # Output: 谟
Perl:
my $char = "\x{8C1F}";
print $char; # Output: 谟
PHP:
$char = "\x{8C1F}";
echo $char; // Output: 谟
Ruby:
char = "\u{8C1F}"
puts char # Output: 谟
Rust:
let c = '\u{8C1F}';
println!("{}", c); // Output: 谟
Go:
char := '\u8C1F'
fmt.Printf("%c\n", char) // Output: 谟
CSS:
/* CSS content property */
.element::before {
content: "\008C1F"; /* 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%B0%9F
MD5:
559e2a12e312697f72036e931a366e0f
SHA1:
1877f9c391d7ab6d8532700917a046a0aeb72a68
Base64:
6LCf