C:
char c = '\uBCA6';
printf("%c\n", c); // Output: 벦
JavaScript:
const char = '\uBCA6';
console.log(char); // Output: 벦
Java:
char c = '\uBCA6';
System.out.println(c); // Output: 벦
JSON:
{"text": "\uBCA6"} // Value: 벦
Python:
char = '\uBCA6'
print(char) # Output: 벦
Perl:
my $char = "\x{BCA6}";
print $char; # Output: 벦
PHP:
$char = "\x{BCA6}";
echo $char; // Output: 벦
Ruby:
char = "\u{BCA6}"
puts char # Output: 벦
Rust:
let c = '\u{BCA6}';
println!("{}", c); // Output: 벦
Go:
char := '\uBCA6'
fmt.Printf("%c\n", char) // Output: 벦
CSS:
/* CSS content property */
.element::before {
content: "\00BCA6"; /* 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=%EB%B2%A6
MD5:
389c40e269438bf5ca369c1348afbc46
SHA1:
58e01c4dc591d012202d0e34ed8356e71e88a903
Base64:
67Km