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