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