C:
char c = '\uB030';
printf("%c\n", c); // Output: 뀰
JavaScript:
const char = '\uB030';
console.log(char); // Output: 뀰
Java:
char c = '\uB030';
System.out.println(c); // Output: 뀰
JSON:
{"text": "\uB030"} // Value: 뀰
Python:
char = '\uB030'
print(char) # Output: 뀰
Perl:
my $char = "\x{B030}";
print $char; # Output: 뀰
PHP:
$char = "\x{B030}";
echo $char; // Output: 뀰
Ruby:
char = "\u{B030}"
puts char # Output: 뀰
Rust:
let c = '\u{B030}';
println!("{}", c); // Output: 뀰
Go:
char := '\uB030'
fmt.Printf("%c\n", char) // Output: 뀰
CSS:
/* CSS content property */
.element::before {
content: "\00B030"; /* 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%B0
MD5:
850fd057d489c0db1642baf490a40fdb
SHA1:
63190bd0e75f9ce3f266a2d98f4af7a53e474d77
Base64:
64Cw