C:
char c = '\uB465';
printf("%c\n", c); // Output: 둥
JavaScript:
const char = '\uB465';
console.log(char); // Output: 둥
Java:
char c = '\uB465';
System.out.println(c); // Output: 둥
JSON:
{"text": "\uB465"} // Value: 둥
Python:
char = '\uB465'
print(char) # Output: 둥
Perl:
my $char = "\x{B465}";
print $char; # Output: 둥
PHP:
$char = "\x{B465}";
echo $char; // Output: 둥
Ruby:
char = "\u{B465}"
puts char # Output: 둥
Rust:
let c = '\u{B465}';
println!("{}", c); // Output: 둥
Go:
char := '\uB465'
fmt.Printf("%c\n", char) // Output: 둥
CSS:
/* CSS content property */
.element::before {
content: "\00B465"; /* 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%91%A5
MD5:
88d1349db277dc38dc4323639733dec3
SHA1:
01a252127b3f0043638cf45abe0e63220fbccfb3
Base64:
65Gl