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