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