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