C:
char c = '\uD149';
printf("%c\n", c); // Output: 텉
JavaScript:
const char = '\uD149';
console.log(char); // Output: 텉
Java:
char c = '\uD149';
System.out.println(c); // Output: 텉
JSON:
{"text": "\uD149"} // Value: 텉
Python:
char = '\uD149'
print(char) # Output: 텉
Perl:
my $char = "\x{D149}";
print $char; # Output: 텉
PHP:
$char = "\x{D149}";
echo $char; // Output: 텉
Ruby:
char = "\u{D149}"
puts char # Output: 텉
Rust:
let c = '\u{D149}';
println!("{}", c); // Output: 텉
Go:
char := '\uD149'
fmt.Printf("%c\n", char) // Output: 텉
CSS:
/* CSS content property */
.element::before {
content: "\00D149"; /* 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%85%89
MD5:
bf90362eee0c2b9cecbb2b9ad663ce6e
SHA1:
6e1934665598e71cfeec4107d6bf44577bc04be3
Base64:
7YWJ