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