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