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