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