C:
char c = '\uBB15';
printf("%c\n", c); // Output: 묕
JavaScript:
const char = '\uBB15';
console.log(char); // Output: 묕
Java:
char c = '\uBB15';
System.out.println(c); // Output: 묕
JSON:
{"text": "\uBB15"} // Value: 묕
Python:
char = '\uBB15'
print(char) # Output: 묕
Perl:
my $char = "\x{BB15}";
print $char; # Output: 묕
PHP:
$char = "\x{BB15}";
echo $char; // Output: 묕
Ruby:
char = "\u{BB15}"
puts char # Output: 묕
Rust:
let c = '\u{BB15}';
println!("{}", c); // Output: 묕
Go:
char := '\uBB15'
fmt.Printf("%c\n", char) // Output: 묕
CSS:
/* CSS content property */
.element::before {
content: "\00BB15"; /* 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%AC%95
MD5:
27c820ff513d4083b840e439b5aa1c7d
SHA1:
bd576f27303d7c85945cb45d1d45ac7bf85b6ee0
Base64:
66yV