C:
char c = '\uBB0C';
printf("%c\n", c); // Output: 묌
JavaScript:
const char = '\uBB0C';
console.log(char); // Output: 묌
Java:
char c = '\uBB0C';
System.out.println(c); // Output: 묌
JSON:
{"text": "\uBB0C"} // Value: 묌
Python:
char = '\uBB0C'
print(char) # Output: 묌
Perl:
my $char = "\x{BB0C}";
print $char; # Output: 묌
PHP:
$char = "\x{BB0C}";
echo $char; // Output: 묌
Ruby:
char = "\u{BB0C}"
puts char # Output: 묌
Rust:
let c = '\u{BB0C}';
println!("{}", c); // Output: 묌
Go:
char := '\uBB0C'
fmt.Printf("%c\n", char) // Output: 묌
CSS:
/* CSS content property */
.element::before {
content: "\00BB0C"; /* 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%8C
MD5:
902ad7cff2e0639c388e997db835b31a
SHA1:
0b3a90b5108564135b9db449da49d9dba4aadc17
Base64:
66yM