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