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