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