C:
char c = '\uACA0';
printf("%c\n", c); // Output: 겠
JavaScript:
const char = '\uACA0';
console.log(char); // Output: 겠
Java:
char c = '\uACA0';
System.out.println(c); // Output: 겠
JSON:
{"text": "\uACA0"} // Value: 겠
Python:
char = '\uACA0'
print(char) # Output: 겠
Perl:
my $char = "\x{ACA0}";
print $char; # Output: 겠
PHP:
$char = "\x{ACA0}";
echo $char; // Output: 겠
Ruby:
char = "\u{ACA0}"
puts char # Output: 겠
Rust:
let c = '\u{ACA0}';
println!("{}", c); // Output: 겠
Go:
char := '\uACA0'
fmt.Printf("%c\n", char) // Output: 겠
CSS:
/* CSS content property */
.element::before {
content: "\00ACA0"; /* 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=%EA%B2%A0
MD5:
e747d48bf862c1248ec9237e4927071e
SHA1:
524a4249ee2e64a92f45387a06dcad1b38dcec5a
Base64:
6rKg