C:
char c = '\uBCCD';
printf("%c\n", c); // Output: 볍
JavaScript:
const char = '\uBCCD';
console.log(char); // Output: 볍
Java:
char c = '\uBCCD';
System.out.println(c); // Output: 볍
JSON:
{"text": "\uBCCD"} // Value: 볍
Python:
char = '\uBCCD'
print(char) # Output: 볍
Perl:
my $char = "\x{BCCD}";
print $char; # Output: 볍
PHP:
$char = "\x{BCCD}";
echo $char; // Output: 볍
Ruby:
char = "\u{BCCD}"
puts char # Output: 볍
Rust:
let c = '\u{BCCD}';
println!("{}", c); // Output: 볍
Go:
char := '\uBCCD'
fmt.Printf("%c\n", char) // Output: 볍
CSS:
/* CSS content property */
.element::before {
content: "\00BCCD"; /* 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%B3%8D
MD5:
976090292389b68499cf6e8dd0aa65eb
SHA1:
b4a136713bc191ff9438317af8bf6fb3115103a3
Base64:
67ON