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