C:
char c = '\u6D4B';
printf("%c\n", c); // Output: 测
JavaScript:
const char = '\u6D4B';
console.log(char); // Output: 测
Java:
char c = '\u6D4B';
System.out.println(c); // Output: 测
JSON:
{"text": "\u6D4B"} // Value: 测
Python:
char = '\u6D4B'
print(char) # Output: 测
Perl:
my $char = "\x{6D4B}";
print $char; # Output: 测
PHP:
$char = "\x{6D4B}";
echo $char; // Output: 测
Ruby:
char = "\u{6D4B}"
puts char # Output: 测
Rust:
let c = '\u{6D4B}';
println!("{}", c); // Output: 测
Go:
char := '\u6D4B'
fmt.Printf("%c\n", char) // Output: 测
CSS:
/* CSS content property */
.element::before {
content: "\006D4B"; /* 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%B5%8B
MD5:
8b4b27724d252a02940d1f8c1b2a75d6
SHA1:
637e55ffc3f18a4632a955d268862033ecb2a863
Base64:
5rWL