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