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