C:
char c = '\uCCA0';
printf("%c\n", c); // Output: 철
JavaScript:
const char = '\uCCA0';
console.log(char); // Output: 철
Java:
char c = '\uCCA0';
System.out.println(c); // Output: 철
JSON:
{"text": "\uCCA0"} // Value: 철
Python:
char = '\uCCA0'
print(char) # Output: 철
Perl:
my $char = "\x{CCA0}";
print $char; # Output: 철
PHP:
$char = "\x{CCA0}";
echo $char; // Output: 철
Ruby:
char = "\u{CCA0}"
puts char # Output: 철
Rust:
let c = '\u{CCA0}';
println!("{}", c); // Output: 철
Go:
char := '\uCCA0'
fmt.Printf("%c\n", char) // Output: 철
CSS:
/* CSS content property */
.element::before {
content: "\00CCA0"; /* 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=%EC%B2%A0
MD5:
2382784ddd6cadf0de2740aaa3699820
SHA1:
2cc49d75d786cf22b16880abdf559c1b85d03d8e
Base64:
7LKg