C:
char c = '\uB4B3';
printf("%c\n", c); // Output: 뒳
JavaScript:
const char = '\uB4B3';
console.log(char); // Output: 뒳
Java:
char c = '\uB4B3';
System.out.println(c); // Output: 뒳
JSON:
{"text": "\uB4B3"} // Value: 뒳
Python:
char = '\uB4B3'
print(char) # Output: 뒳
Perl:
my $char = "\x{B4B3}";
print $char; # Output: 뒳
PHP:
$char = "\x{B4B3}";
echo $char; // Output: 뒳
Ruby:
char = "\u{B4B3}"
puts char # Output: 뒳
Rust:
let c = '\u{B4B3}';
println!("{}", c); // Output: 뒳
Go:
char := '\uB4B3'
fmt.Printf("%c\n", char) // Output: 뒳
CSS:
/* CSS content property */
.element::before {
content: "\00B4B3"; /* 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%92%B3
MD5:
df8b298cc3402b9effef5228b2d22945
SHA1:
65c016d65ae7f14355d146358905255d0a1dbbfc
Base64:
65Kz