C:
char c = '\u5CF2';
printf("%c\n", c); // Output: 峲
JavaScript:
const char = '\u5CF2';
console.log(char); // Output: 峲
Java:
char c = '\u5CF2';
System.out.println(c); // Output: 峲
JSON:
{"text": "\u5CF2"} // Value: 峲
Python:
char = '\u5CF2'
print(char) # Output: 峲
Perl:
my $char = "\x{5CF2}";
print $char; # Output: 峲
PHP:
$char = "\x{5CF2}";
echo $char; // Output: 峲
Ruby:
char = "\u{5CF2}"
puts char # Output: 峲
Rust:
let c = '\u{5CF2}';
println!("{}", c); // Output: 峲
Go:
char := '\u5CF2'
fmt.Printf("%c\n", char) // Output: 峲
CSS:
/* CSS content property */
.element::before {
content: "\005CF2"; /* 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%B3%B2
MD5:
a3084b5c2b0df45a1a06fce257281a1e
SHA1:
037806e1390d21a205618d76454258f58a600a5c
Base64:
5bOy