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