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