C:
char c = '\uB31F';
printf("%c\n", c); // Output: 댟
JavaScript:
const char = '\uB31F';
console.log(char); // Output: 댟
Java:
char c = '\uB31F';
System.out.println(c); // Output: 댟
JSON:
{"text": "\uB31F"} // Value: 댟
Python:
char = '\uB31F'
print(char) # Output: 댟
Perl:
my $char = "\x{B31F}";
print $char; # Output: 댟
PHP:
$char = "\x{B31F}";
echo $char; // Output: 댟
Ruby:
char = "\u{B31F}"
puts char # Output: 댟
Rust:
let c = '\u{B31F}';
println!("{}", c); // Output: 댟
Go:
char := '\uB31F'
fmt.Printf("%c\n", char) // Output: 댟
CSS:
/* CSS content property */
.element::before {
content: "\00B31F"; /* 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=%EB%8C%9F
MD5:
3ff752cf5b9e02b70d555a934b429b0a
SHA1:
17fe45a3ae05d618076a199f3632feb5dfe40ccb
Base64:
64yf