C:
char c = '\uD18A';
printf("%c\n", c); // Output: 톊
JavaScript:
const char = '\uD18A';
console.log(char); // Output: 톊
Java:
char c = '\uD18A';
System.out.println(c); // Output: 톊
JSON:
{"text": "\uD18A"} // Value: 톊
Python:
char = '\uD18A'
print(char) # Output: 톊
Perl:
my $char = "\x{D18A}";
print $char; # Output: 톊
PHP:
$char = "\x{D18A}";
echo $char; // Output: 톊
Ruby:
char = "\u{D18A}"
puts char # Output: 톊
Rust:
let c = '\u{D18A}';
println!("{}", c); // Output: 톊
Go:
char := '\uD18A'
fmt.Printf("%c\n", char) // Output: 톊
CSS:
/* CSS content property */
.element::before {
content: "\00D18A"; /* 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%86%8A
MD5:
9f7557349cb4fdafb2ffdff36f8f8e43
SHA1:
f59534e7d0e7b666e9660188b04d0c099039041a
Base64:
7YaK