C:
char c = '\u51B2';
printf("%c\n", c); // Output: 冲
JavaScript:
const char = '\u51B2';
console.log(char); // Output: 冲
Java:
char c = '\u51B2';
System.out.println(c); // Output: 冲
JSON:
{"text": "\u51B2"} // Value: 冲
Python:
char = '\u51B2'
print(char) # Output: 冲
Perl:
my $char = "\x{51B2}";
print $char; # Output: 冲
PHP:
$char = "\x{51B2}";
echo $char; // Output: 冲
Ruby:
char = "\u{51B2}"
puts char # Output: 冲
Rust:
let c = '\u{51B2}';
println!("{}", c); // Output: 冲
Go:
char := '\u51B2'
fmt.Printf("%c\n", char) // Output: 冲
CSS:
/* CSS content property */
.element::before {
content: "\0051B2"; /* 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=%E5%86%B2
MD5:
d05b0c438147f453ce396ccf3327a368
SHA1:
e429a897c531a215d7eaddfcf142983d1bdae88a
Base64:
5Yay