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