C:
char c = '\u6892';
printf("%c\n", c); // Output: 梒
JavaScript:
const char = '\u6892';
console.log(char); // Output: 梒
Java:
char c = '\u6892';
System.out.println(c); // Output: 梒
JSON:
{"text": "\u6892"} // Value: 梒
Python:
char = '\u6892'
print(char) # Output: 梒
Perl:
my $char = "\x{6892}";
print $char; # Output: 梒
PHP:
$char = "\x{6892}";
echo $char; // Output: 梒
Ruby:
char = "\u{6892}"
puts char # Output: 梒
Rust:
let c = '\u{6892}';
println!("{}", c); // Output: 梒
Go:
char := '\u6892'
fmt.Printf("%c\n", char) // Output: 梒
CSS:
/* CSS content property */
.element::before {
content: "\006892"; /* 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=%E6%A2%92
MD5:
c156d4820b42e70cc04e62befef30c8b
SHA1:
60e63014dde10d70837474e1d902d6cb1d88a92b
Base64:
5qKS