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