C:
char c = '\u93AC';
printf("%c\n", c); // Output: 鎬
JavaScript:
const char = '\u93AC';
console.log(char); // Output: 鎬
Java:
char c = '\u93AC';
System.out.println(c); // Output: 鎬
JSON:
{"text": "\u93AC"} // Value: 鎬
Python:
char = '\u93AC'
print(char) # Output: 鎬
Perl:
my $char = "\x{93AC}";
print $char; # Output: 鎬
PHP:
$char = "\x{93AC}";
echo $char; // Output: 鎬
Ruby:
char = "\u{93AC}"
puts char # Output: 鎬
Rust:
let c = '\u{93AC}';
println!("{}", c); // Output: 鎬
Go:
char := '\u93AC'
fmt.Printf("%c\n", char) // Output: 鎬
CSS:
/* CSS content property */
.element::before {
content: "\0093AC"; /* 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=%E9%8E%AC
MD5:
7e263896d3db945fdf891ebd335af86d
SHA1:
b4522a7ef401c2c3e50e4c7e8b98cf2a8ef3580b
Base64:
6Y6s