C:
char c = '\uD2F0';
printf("%c\n", c); // Output: 티
JavaScript:
const char = '\uD2F0';
console.log(char); // Output: 티
Java:
char c = '\uD2F0';
System.out.println(c); // Output: 티
JSON:
{"text": "\uD2F0"} // Value: 티
Python:
char = '\uD2F0'
print(char) # Output: 티
Perl:
my $char = "\x{D2F0}";
print $char; # Output: 티
PHP:
$char = "\x{D2F0}";
echo $char; // Output: 티
Ruby:
char = "\u{D2F0}"
puts char # Output: 티
Rust:
let c = '\u{D2F0}';
println!("{}", c); // Output: 티
Go:
char := '\uD2F0'
fmt.Printf("%c\n", char) // Output: 티
CSS:
/* CSS content property */
.element::before {
content: "\00D2F0"; /* 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%8B%B0
MD5:
74e8ef0f5e1ddfd15bfcaddb3e361628
SHA1:
4d705fe18cbddd5bfc5d4809576b3526a50ebcf8
Base64:
7Yuw