C:
char c = '\uBCA5';
printf("%c\n", c); // Output: 벥
JavaScript:
const char = '\uBCA5';
console.log(char); // Output: 벥
Java:
char c = '\uBCA5';
System.out.println(c); // Output: 벥
JSON:
{"text": "\uBCA5"} // Value: 벥
Python:
char = '\uBCA5'
print(char) # Output: 벥
Perl:
my $char = "\x{BCA5}";
print $char; # Output: 벥
PHP:
$char = "\x{BCA5}";
echo $char; // Output: 벥
Ruby:
char = "\u{BCA5}"
puts char # Output: 벥
Rust:
let c = '\u{BCA5}';
println!("{}", c); // Output: 벥
Go:
char := '\uBCA5'
fmt.Printf("%c\n", char) // Output: 벥
CSS:
/* CSS content property */
.element::before {
content: "\00BCA5"; /* 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%A5
MD5:
45a4b7119fba038929f668df5b56598d
SHA1:
e72f2c162aabf5a055ec5ad35f9f630655b25262
Base64:
67Kl