C:
char c = '\uB004';
printf("%c\n", c); // Output: 뀄
JavaScript:
const char = '\uB004';
console.log(char); // Output: 뀄
Java:
char c = '\uB004';
System.out.println(c); // Output: 뀄
JSON:
{"text": "\uB004"} // Value: 뀄
Python:
char = '\uB004'
print(char) # Output: 뀄
Perl:
my $char = "\x{B004}";
print $char; # Output: 뀄
PHP:
$char = "\x{B004}";
echo $char; // Output: 뀄
Ruby:
char = "\u{B004}"
puts char # Output: 뀄
Rust:
let c = '\u{B004}';
println!("{}", c); // Output: 뀄
Go:
char := '\uB004'
fmt.Printf("%c\n", char) // Output: 뀄
CSS:
/* CSS content property */
.element::before {
content: "\00B004"; /* 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%80%84
MD5:
a7163f0225062c82fe29ed50ed4c33c2
SHA1:
1a8990079e200c12755c919e93e3add03c28ccaa
Base64:
64CE