C:
char c = '\uD20B';
printf("%c\n", c); // Output: 툋
JavaScript:
const char = '\uD20B';
console.log(char); // Output: 툋
Java:
char c = '\uD20B';
System.out.println(c); // Output: 툋
JSON:
{"text": "\uD20B"} // Value: 툋
Python:
char = '\uD20B'
print(char) # Output: 툋
Perl:
my $char = "\x{D20B}";
print $char; # Output: 툋
PHP:
$char = "\x{D20B}";
echo $char; // Output: 툋
Ruby:
char = "\u{D20B}"
puts char # Output: 툋
Rust:
let c = '\u{D20B}';
println!("{}", c); // Output: 툋
Go:
char := '\uD20B'
fmt.Printf("%c\n", char) // Output: 툋
CSS:
/* CSS content property */
.element::before {
content: "\00D20B"; /* 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=%ED%88%8B
MD5:
117ea8c75a9f39f33f4431a5e2920f60
SHA1:
a8dcf90ab341ee9698c86c32caf565de35864408
Base64:
7YiL